Clean up on socket initialization error
This commit is contained in:
parent
fd6cdce95c
commit
624d1d215c
|
@ -240,6 +240,20 @@ namespace AsterNET.FastAGI
|
||||||
#endif
|
#endif
|
||||||
throw ex;
|
throw ex;
|
||||||
}
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
if (serverSocket != null)
|
||||||
|
{
|
||||||
|
serverSocket.Close();
|
||||||
|
serverSocket = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
pool.Shutdown();
|
||||||
|
#if LOGGER
|
||||||
|
logger.Info("AGIServer shut down.");
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
#if LOGGER
|
#if LOGGER
|
||||||
logger.Info("Listening on " + address + ":" + port + ".");
|
logger.Info("Listening on " + address + ":" + port + ".");
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue