Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-02-03 | tests: Moved some comments so the test data files parse as XML | Dan Fandrich | |
2011-12-05 | FTP: close callback fix | Daniel Stenberg | |
Keep track of which sockets that are the result of accept() calls and refuse to call the closesocket callback for those sockets. Test case 596 now verifies that the open socket callback is called the same number of times as the closed socket callback for active FTP connections. Bug: http://curl.haxx.se/mail/lib-2011-12/0018.html Reported by: Gokhan Sengun | |||
2011-12-05 | FTP: call opensocket callback properly | Daniel Stenberg | |
When the new socket is created for an active connection, it is now done using the open socket callback. Test case 596 was modified to run fine, although it hides the fact that the close callback is still called too many times, as it also gets called for closing sockets that were created with accept(). | |||
2011-12-04 | test: verify the opensocket callback for FTP | Daniel Stenberg | |
test 595: for passive FTP test 596: for active FTP |