Daniel Stenberg bf51f05a50 FTP improvements:
If EPSV, EPRT or LPRT is tried and doesn't work, it will not be retried on
the same server again even if a following request is made using a persistent
connection.

If a second request is made to a server, requesting a file from the same
directory as the previous request operated on, libcurl will no longer make
that long series of CWD commands just to end up on the same spot. Note that
this is only for *exactly* the same dir. There is still room for improvements
to optimize the CWD-sending when the dirs are only slightly different.

Added test 210, 211 and 212 to verify these changes. Had to improve the
test script too and added a new primitive to the test file format.
2004-11-25 22:21:49 +00:00
..
2004-08-10 10:43:41 +00:00
2004-10-19 10:14:06 +00:00
2004-11-22 13:28:44 +00:00
2004-08-16 13:24:01 +00:00
2002-06-14 09:36:09 +00:00
2004-05-24 11:57:34 +00:00
2004-01-07 09:19:33 +00:00
2004-01-07 09:19:33 +00:00
2004-11-09 14:57:11 +00:00
2004-11-25 22:21:49 +00:00
2004-10-19 15:30:08 +00:00
2004-01-07 09:19:33 +00:00
2004-11-25 16:49:14 +00:00
2004-11-11 16:34:24 +00:00
2004-01-07 09:19:33 +00:00
2004-05-13 10:38:37 +00:00
2004-08-16 11:09:01 +00:00
2004-08-16 11:09:30 +00:00
2004-06-09 01:15:03 +00:00
2004-01-07 09:19:33 +00:00
2004-11-16 14:24:54 +00:00
2004-11-19 08:52:33 +00:00
2004-11-19 15:15:52 +00:00
2004-11-19 13:45:46 +00:00
2004-01-07 09:19:33 +00:00
2004-01-07 09:19:33 +00:00
2004-06-10 21:20:15 +00:00
2004-04-06 07:59:11 +00:00
2004-04-30 08:51:19 +00:00
2003-07-22 10:00:37 +00:00
2004-01-07 09:19:33 +00:00
2004-11-22 13:28:44 +00:00
2004-03-10 16:01:47 +00:00
2004-11-24 18:25:33 +00:00
2004-10-11 17:26:24 +00:00
2004-01-07 09:19:33 +00:00
2004-11-19 08:52:33 +00:00
2004-11-04 16:14:33 +00:00
2004-11-25 22:21:49 +00:00
2004-11-25 22:21:49 +00:00

$Id$
                                  _   _ ____  _     
                              ___| | | |  _ \| |    
                             / __| | | | |_) | |    
                            | (__| |_| |  _ <| |___ 
                             \___|\___/|_| \_\_____|

             How To Track Down Suspected Memory Leaks in libcurl
             ===================================================

Single-threaded

  Please note that this memory leak system is not adjusted to work in more
  than one thread. If you want/need to use it in a multi-threaded app. Please
  adjust accordingly.


Build

  Rebuild libcurl with -DCURLDEBUG (usually, rerunning configure with
  --enable-debug fixes this). 'make clean' first, then 'make' so that all
  files actually are rebuilt properly. It will also make sense to build
  libcurl with the debug option (usually -g to the compiler) so that debugging
  it will be easier if you actually do find a leak in the library.

  This will create a library that has memory debugging enabled.

Modify Your Application

  Add a line in your application code:

       curl_memdebug("filename");

  This will make the malloc debug system output a full trace of all resource
  using functions to the given file name. Make sure you rebuild your program
  and that you link with the same libcurl you built for this purpose as
  described above.

Run Your Application

  Run your program as usual. Watch the specified memory trace file grow.

  Make your program exit and use the proper libcurl cleanup functions etc. So
  that all non-leaks are returned/freed properly.

Analyze the Flow

  Use the tests/memanalyze.pl perl script to analyze the memdump file:

    tests/memanalyze.pl < memdump

  This now outputs a report on what resources that were allocated but never
  freed etc. This report is very fine for posting to the list!

  If this doesn't produce any output, no leak was detected in libcurl. Then
  the leak is mostly likely to be in your code.