summaryrefslogtreecommitdiff
path: root/tests/data/test596
Commit message (Collapse)AuthorAgeFilesLines
* tests: Moved some comments so the test data files parse as XMLDan Fandrich2014-02-031-1/+1
|
* FTP: close callback fixDaniel Stenberg2011-12-051-1/+0
| | | | | | | | | | 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
* FTP: call opensocket callback properlyDaniel Stenberg2011-12-051-2/+6
| | | | | | | | | 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().
* test: verify the opensocket callback for FTPDaniel Stenberg2011-12-041-0/+57
test 595: for passive FTP test 596: for active FTP