Skip to content
  1. Dec 20, 2011
  2. Dec 19, 2011
  3. Dec 13, 2011
  4. Dec 12, 2011
    • Jason Glasgow's avatar
      CURLOPT_INTERFACE: avoid resolving interfaces names · 6e4835c7
      Jason Glasgow authored
      Do not try to resolve interfaces names via DNS by recognizing interface
      names in a few ways.  If the interface option argument has a prefix of
      "if!" then treat the argument as only an interface.  Similarly, if the
      interface argument is the name of an interface (even if it does not have
      an IP address assigned), treat it as an interface name.  Finally, if the
      interface argument is prefixed by "host!" treat it as a hostname that
      must be resolved by /etc/hosts or DNS.
      
      These changes allow a client using the multi interfaces to avoid
      blocking on name resolution if the interface loses its IP address or
      disappears.
      6e4835c7
  5. Dec 11, 2011
  6. Dec 09, 2011
  7. Dec 07, 2011
  8. Dec 06, 2011
  9. Dec 05, 2011
  10. Dec 02, 2011
  11. Nov 30, 2011
    • Steve Holme's avatar
      POP3: fixed escaped dot not being striped out · bdb64781
      Steve Holme authored
      Changed the eob detection to work across the whole of the buffer so that
      lines that begin with a dot (which the server will have escaped) are
      passed to the client application correctly.
      bdb64781
  12. Nov 29, 2011
  13. Nov 28, 2011
    • Daniel Stenberg's avatar
      POP3: fix end of body detection · dda815b7
      Daniel Stenberg authored
      Curl_pop3_write() now has a state machine that scans for the end of a
      POP3 body so that the CR LF '.' CR LF sequence can come in everything
      from one up to five subsequent packets.
      
      Test case 810 is modified to use SLOWDOWN which makes the server pause
      between each single byte and thus makes the POP3 body get sent to curl
      basically one byte at a time.
      dda815b7
  14. Nov 25, 2011
  15. Nov 24, 2011
    • Jonas Schnelli's avatar
      query-part: ignore the URI part for given protocols · 2c905fd1
      Jonas Schnelli authored
      By setting PROTOPT_NOURLQUERY in the protocol handler struct, the
      protocol will get the "query part" of the URL cut off before the data is
      handled by the protocol-specific code. This makes libcurl adhere to
      RFC3986 section 2.2.
      
      Test 1220 is added to verify a file:// URL with query-part.
      2c905fd1