1. 11 Apr, 2011 3 commits
  2. 10 Apr, 2011 1 commit
    • Daniel Stenberg's avatar
      OpenSSL: no-sslv2 aware · c66b0b32
      Daniel Stenberg authored
      Allow openSSL without SSL2 to be used. This fix is inspired by the fix
      provided by Cristian Rodrguez.
      
      Reported by: Cristian Rodrguez
      c66b0b32
  3. 09 Apr, 2011 1 commit
  4. 08 Apr, 2011 1 commit
  5. 07 Apr, 2011 7 commits
    • Daniel Stenberg's avatar
      mk-ca-bundle.pl: show full URL in output · 23544f35
      Daniel Stenberg authored
      When I decided to search for a potential error with the cacert bundle it
      struck me I wanted to see the full source URL in the output...
      23544f35
    • Dan Fandrich's avatar
      Added mention of FTP proxies · 2f692403
      Dan Fandrich authored
      2f692403
    • Gisle Vanem's avatar
      src/Makefile.b32: updates · aeb214f3
      Gisle Vanem authored
      * Rename the object object directory from 'objs' to 'BCC_obj' to be in
       sync with my previous patch for lib/Makefile.b32.
      
      * Turn off these warnings to keep the build totally silent (with CBuilder-6
       that is).
        -w-inl    8026 Functions X are not expanded inline.
        -w-pia   8060 Possibly incorrect assignment
        -w-pin  8061 Initialization is only partially bracketed
       (same added in src/Makefile.b32)
      
      * $(MKDIR) and $(RMDIR) have been replaced with the shell-commands 'md'
       and 'rd'. When having MingW/Msys programs 'mkdir.exe' and 'rmdir.exe' in
      $PATH, this confuses Borland's make and the result (the cleaning etc.) would
       not be as expected.
      
      * Removed the preprocessing step; no need for PP_CMD and the .int files.
       curl.exe builds fine w/o and the makefile gets simpler.
      
      * Added a target for creating a compressed hugehelp.c if WITH_ZLIB is  defined.
      It assumes groff, gzip and perl is available if such an "advanced"  users
      requests it. Okay? BTW. My groff and Perl needs unix-slashes ...
      aeb214f3
    • Gisle Vanem's avatar
      lib/Makefile.b32: updates · 89fa3b3e
      Gisle Vanem authored
      * Rename the object object directory from 'objs' to 'BCC_obj'. I feel
       it should be named properly. Ref. Makefile.Watcom where it's called
       'WC_Win32.obj'.
      
      * Turn off these warnings to keep the build totally silent (with CBuilder-6
       that is).
        -w-inl    8026 Functions X are not expanded inline.
        -w-pia   8060 Possibly incorrect assignment
        -w-pin  8061 Initialization is only partially bracketed
      
      I'm sure the warnings could be fixed the "proper" way or with some added
      "#pragma" statements. But that just clutters the sources IMHO.
      
      * $(MKDIR) and $(RMDIR) have been replaced with the shell-commands 'md'
       and 'rd'. When having MingW/Msys programs 'mkdir.exe' and 'rmdir.exe' in
      $PATH, this confuses Borland's make and the result (the cleaning etc.) would
       not be as expected.
      
      * Added a ".path.int = $(OBJDIR)" to tell make where the $(PREPROCESSED)
       files are. Why we need the preprocess step in the fist place is beyond me
      (Yang?). But I'll leave that for now.
      89fa3b3e
    • Gisle Vanem's avatar
      examples/makefile.dj: update email · e9afbe2a
      Gisle Vanem authored
      e9afbe2a
    • Daniel Stenberg's avatar
      TODO-RELEASE: deleted 4 issues · c48849ef
      Daniel Stenberg authored
      These problems have gotten no interest/feedback from users:
      
      -275 - Introduce a way to avoid sending USER for FTP connections
      -288 - bug 3219997 curl rtmp request curl: (55) select/poll returned error
      
      This problem is rather an autoconf bug with little user interest and it
      can be worked around with an older autoconf:
      
      -278 - "Configure  $as_echo does not work"
      
      This problem is not fixed:
      
      -286 - bug 3214223 Pipelined HTTP requests with a zero-length body broken
      c48849ef
    • Chris Smowton's avatar
      HTTP pipelining: Fix handling of zero-length responses · d54668eb
      Chris Smowton authored
      Also add test case 584 for the same
      
      Bug: http://curl.haxx.se/bug/view.cgi?id=3214223
      d54668eb
  6. 06 Apr, 2011 3 commits
  7. 05 Apr, 2011 6 commits
  8. 04 Apr, 2011 4 commits
  9. 02 Apr, 2011 2 commits
  10. 01 Apr, 2011 3 commits
  11. 29 Mar, 2011 2 commits
  12. 27 Mar, 2011 1 commit
  13. 25 Mar, 2011 3 commits
    • Peter Sylvester's avatar
      TSL-SRP: enabled with OpenSSL · 2531cd94
      Peter Sylvester authored
      If a new enough OpenSSL version is used, configure detects the TLS-SRP
      support and enables it.
      2531cd94
    • Daniel Stenberg's avatar
      RELEASE-NOTES: synced with 11c2db2a · 40256ec4
      Daniel Stenberg authored
      40256ec4
    • Daniel Stenberg's avatar
      fix: re-use of bound connections · 11c2db2a
      Daniel Stenberg authored
      When asked to bind the local end of a connection when doing a request,
      the code will now disqualify other existing connections from re-use even
      if they are connected to the correct remote host.
      
      This will also affect which connections that can be used for pipelining,
      so that only connections that aren't bound or bound to the same
      device/port you're asking for will be considered.
      11c2db2a
  14. 24 Mar, 2011 1 commit
  15. 23 Mar, 2011 2 commits
    • Daniel Stenberg's avatar
      rtsp: move protocol code to dedicated file · cc9e4321
      Daniel Stenberg authored
      The RTSP-specific function for checking for "dead" connection is better
      located in rtsp.c. The code using this is now written without #ifdefs as
      the function call is instead turned into a macro (in rtsp.h) when RTSP
      is disabled.
      cc9e4321
    • Daniel Stenberg's avatar
      MAIL-ETIQUETTE: intro and spam · 97058756
      Daniel Stenberg authored
      Added a little generic info section about the lists and a section about
      how to deal with trolls and spam on the lists.
      97058756