On Fri, Nov 5, 2010 at 12:14 PM, Aidan Diffey <[email protected]> wrote: > It would appear that I can set the FTP server to bind to a port that is > already in use, and it will bind to it correctly and operate an FTP > service. Is this the correct behavior when attempting to bind to a port > that is already in use?
We set SO_REUSEADDR on starting FtpServer which causes this (we're planning to make this configurable). You can read more about how this works on Windows here: http://msdn.microsoft.com/en-us/library/ms740621(VS.85).aspx /niklas
