1. 18 Jan, 2010 8 commits
  2. 17 Jan, 2010 6 commits
    • Yang Tse's avatar
      fix warnings · 7f898011
      Yang Tse authored
      7f898011
    • Yang Tse's avatar
      · 312494f2
      Yang Tse authored
      fix warnings
      312494f2
    • Yang Tse's avatar
      · 8d97b333
      Yang Tse authored
      fix warnings
      8d97b333
    • Yang Tse's avatar
      · b51b703a
      Yang Tse authored
      add some debug messages
      b51b703a
    • Yang Tse's avatar
      · 071c3898
      Yang Tse authored
      use servername_id() from serverhelp.pm
      071c3898
    • Yang Tse's avatar
      · 365e75a2
      Yang Tse authored
      refactored stopping of test harness servers
      365e75a2
  3. 15 Jan, 2010 4 commits
  4. 14 Jan, 2010 2 commits
  5. 13 Jan, 2010 2 commits
  6. 12 Jan, 2010 5 commits
  7. 11 Jan, 2010 8 commits
  8. 10 Jan, 2010 2 commits
    • Yang Tse's avatar
      · 1103d0c7
      Yang Tse authored
      Update error message to include port number
      1103d0c7
    • Yang Tse's avatar
      · aae97c99
      Yang Tse authored
      Previous commit adjustments
      aae97c99
  9. 09 Jan, 2010 2 commits
  10. 08 Jan, 2010 1 commit
    • Daniel Stenberg's avatar
      - Johan van Selst found and fixed a OpenSSL session ref count leak: · 552c3de3
      Daniel Stenberg authored
        ossl_connect_step3() increments an SSL session handle reference counter on
        each call. When sessions are re-used this reference counter may be
        incremented many times, but it will be decremented only once when done (by
        Curl_ossl_session_free()); and the internal OpenSSL data will not be freed
        if this reference count remains positive. When a session is re-used the
        reference counter should be corrected by explicitly calling
        SSL_SESSION_free() after each consecutive SSL_get1_session() to avoid
        introducing a memory leak.
      
        (http://curl.haxx.se/bug/view.cgi?id=2926284)
      552c3de3