1. 21 Mar, 2011 2 commits
  2. 20 Mar, 2011 5 commits
  3. 19 Mar, 2011 1 commit
  4. 18 Mar, 2011 6 commits
  5. 17 Mar, 2011 6 commits
  6. 15 Mar, 2011 13 commits
  7. 14 Mar, 2011 7 commits
    • Daniel Stenberg's avatar
      protocols: use CURLPROTO_ internally · 13b64d75
      Daniel Stenberg authored
      The PROT_* set of internal defines for the protocols is no longer
      used. We now use the same bits internally as we have defined in the
      public header using the CURLPROTO_ prefix. This is for simplicity and
      because the PROT_* prefix was already used duplicated internally for a
      set of KRB4 values.
      
      The PROTOPT_* defines were moved up to just below the struct definition
      within which they are used.
      13b64d75
    • Daniel Stenberg's avatar
      protocol handler: added flags field · 8831000b
      Daniel Stenberg authored
      The protocol handler struct got a 'flags' field for special information
      and characteristics of the given protocol.
      
      This now enables us to move away central protocol information such as
      CLOSEACTION and DUALCHANNEL from single defines in a central place, out
      to each protocol's definition. It also made us stop abusing the protocol
      field for other info than the protocol, and we could start cleaning up
      other protocol-specific things by adding flags bits to set in the
      handler struct.
      
      The "protocol" field connectdata struct was removed as well and the code
      now refers directly to the conn->handler->protocol field instead. To
      make things work properly, the code now always store a conn->given
      pointer that points out the original handler struct so that the code can
      learn details from the original protocol even if conn->handler is
      modified along the way - for example when switching to go over a HTTP
      proxy.
      8831000b
    • Patrick Monnerat's avatar
      - Take new char * options into account in OS400 curl_easy_setopt_ccsid(). · ed8749e3
      Patrick Monnerat authored
      - Keep RPG binding, STRING_* table end check and OS400 README up to date.
      ed8749e3
    • Daniel Stenberg's avatar
      FAQ: indent tables · 77110865
      Daniel Stenberg authored
      Lines that are indented with at least 5 spaces get special treatment by
      the script that converts it to HTML on the site.
      77110865
    • Daniel Stenberg's avatar
      sslgen: define Curl_ssl_connect_nonblocking for non-SSL · fdaa8da7
      Daniel Stenberg authored
      The non-blocking connect improvement for IMAP showed that we didn't
      properly define the Curl_ssl_connect_nonblocking function for non-SSL
      builds.
      
      Reported by: Tor Arntsen
      fdaa8da7
    • Daniel Stenberg's avatar
      configure: removed wrongly claimed default paths · c40ae2cb
      Daniel Stenberg authored
      Several --with-XXX options claimed the wrong default path in their help
      outputs.
      
      Reported by: Vincent Torri
      c40ae2cb
    • Ask Bjørn Hansen's avatar
      mk-ca-bundle.pl: Only download if modified · 3e00af34
      Ask Bjørn Hansen authored
      Only download and convert the certdata to the ca-bundle.crt if Mozilla
      changed the data
      
      The Perl LWP module (which in a bit of a circular reference is used by
      mk-ca-bundle.pl) is now indirectly using this script. I made this small
      tweak to make it easier to automatically maintain the generated
      ca-bundle.crt file in version control.
      3e00af34