1. 17 Mar, 2012 2 commits
  2. 16 Mar, 2012 5 commits
  3. 13 Mar, 2012 1 commit
  4. 10 Mar, 2012 6 commits
  5. 08 Mar, 2012 5 commits
  6. 05 Mar, 2012 1 commit
  7. 25 Feb, 2012 1 commit
  8. 24 Feb, 2012 1 commit
  9. 23 Feb, 2012 6 commits
    • Steve Holme's avatar
      SMTP: Added support for returning SMTP response codes · 54300072
      Steve Holme authored
      Set the conn->data->info.httpcode variable in smtp_statemach_act() to
      allow Curl_getinfo() to return the SMTP response code via the
      CURLINFO_RESPONSE_CODE action.
      54300072
    • Daniel Stenberg's avatar
      curl.1: updated --libcurl · 779fa13e
      Daniel Stenberg authored
      With Colin Hogben's recent work, --libcurl now also works with -F and
      more. Remove the previous caveat.
      779fa13e
    • Daniel Stenberg's avatar
      test: --libcurl fixes · 1a7bba19
      Daniel Stenberg authored
      The line endings broke when I saved the three recent patches (my fault,
      not Colin's) to 'git am' them.
      
      Adjusted the stripping of the test program for comparing to also exclude
      the SSH key file name as that will differ and use a local path name.
      1a7bba19
    • Colin Hogben's avatar
      Add helper script convsrctest.pl to manipulate --libcurl tests. · 21130dab
      Colin Hogben authored
      The intention is to take the output of curl's --libcurl option,
      as exercised in test 14xx, and generate a corresponding test15xx
      in which the generated code is compiled and run.  This will verify
      that the generated code behaves equivalently to the original
      invocation of the curl command.
      
      The script is not yet integrated into the configure / makefile
      machinery.
      21130dab
    • Colin Hogben's avatar
      Add tests for curl's --libcurl output. · c3cae332
      Colin Hogben authored
      These tests check the output of the --libcurl option of curl,
      including the improved option handling added in a related patch.
      c3cae332
    • Colin Hogben's avatar
      Generate lists and use symbols in --libcurl code output. · 99542429
      Colin Hogben authored
      This patch improves the output of curl's --libcurl option by
      generating code which builds curl_httppost and curl_slist lists, and
      uses symbolic names for enum and flag values.  Variants of the
      my_setopt macro in tool_setopt.h are added in order to pass extra type
      information to the code-generation step in tool_setopt.c.
      
      If curl is configured with --disable-libcurl-option then the macros
      call curl_easy_setopt directly.
      99542429
  10. 21 Feb, 2012 3 commits
  11. 19 Feb, 2012 1 commit
  12. 17 Feb, 2012 2 commits
    • Steve Holme's avatar
      smtp.c: Fixed an issue with the EOB checking · 3d98aed5
      Steve Holme authored
      Curl_smtp_escape_eob() would leave off final CRLFs from emails ending
      in multiple blank lines additionally leaving the smtpc->eob variable
      with the character count in, which would cause problems for additional
      emails when sent through multiple calls to curl_easy_perform() after a
      CURLOPT_CONNECT_ONLY.
      3d98aed5
    • Daniel Stenberg's avatar
      CURLE_FTP_PRET_FAILED: listed twice · 4cf742f3
      Daniel Stenberg authored
      Make sure it is mentioned once and with the correct description
      4cf742f3
  13. 16 Feb, 2012 4 commits
  14. 15 Feb, 2012 2 commits
    • Steve Holme's avatar
      DOCS: Added information for CURLOPT_MAIL_AUTH. · 154c0d4b
      Steve Holme authored
      Added information relating to the new CURLOPT_MAIL_AUTH parameter and
      reworked CURLOPT_MAIL_FROM and CURLOPT_MAIL_RCPT to be a clearer.
      
      Fixed inconsistencies of "vocalisation of the abbreviation" versus
      "vocalisation of the first word" for all abbreviations.
      
      Corrected a typo in CURLOPT_NOPROXY.
      154c0d4b
    • Steve Holme's avatar
      smtp.c: Fixed use of angled brackets in AUTH parameter. · b685481d
      Steve Holme authored
      Fixed the use of angled brackets "<>" in the optional AUTH parameter as
      per RFC-2554 section 5. The address should not include them but an
      empty address should be replaced by them.
      b685481d