async하게 수정
This commit is contained in:
@@ -313,7 +313,7 @@ namespace FluentFTP {
|
||||
try {
|
||||
stream.Listen(m_stream.LocalEndPoint.Address, port);
|
||||
success = true;
|
||||
} catch (SocketException se) {
|
||||
} catch (SocketException) {
|
||||
#if NETFX
|
||||
// Already in use
|
||||
if (se.ErrorCode != 10048)
|
||||
@@ -448,7 +448,7 @@ namespace FluentFTP {
|
||||
stream.Listen(m_stream.LocalEndPoint.Address, port);
|
||||
success = true;
|
||||
}
|
||||
catch (SocketException se)
|
||||
catch (SocketException)
|
||||
{
|
||||
#if NETFX
|
||||
// Already in use
|
||||
|
||||
Reference in New Issue
Block a user