1. 27 Oct, 2013 4 commits
    • Daniel Stenberg's avatar
      TODO: remove "Happy Eyeball dual stack connect" · 1709e5e9
      Daniel Stenberg authored
      ... as it was just merged in commit 7d7df
      1709e5e9
    • Björn Stenberg's avatar
      Add "Happy Eyeballs" for IPv4/IPv6. · 7d7df831
      Björn Stenberg authored
      This patch invokes two socket connect()s nearly simultaneously, and
      the socket that is first connected "wins" and is subsequently used for
      the connection. The other is terminated.
      
      There is a very slight IPv4 preference, in that if both sockets connect
      simultaneously IPv4 is checked first and thus will win.
      7d7df831
    • Steve Holme's avatar
      email: Added initial support for cancelling authentication · 7de4cc35
      Steve Holme authored
      Should a client application fail to decode an authentication message
      received from a server, or not support any of the parameters given by
      the server in the message, then the authentication phrase should be
      cancelled gracefully by the client rather than simply terminating the
      connection.
      
      The authentication phrase should be cancelled by simply sending a '*'
      to the server, in response to erroneous data being received, as per
      RFC-3501, RFC-4954 and RFC-5034.
      
      This patch adds the necessary state machine constants and appropriate
      response handlers in order to add this functionality for the CRAM-MD5,
      DIGEST-MD5 and NTLM authentication mechanisms.
      7de4cc35
    • Steve Holme's avatar
      email: Moved authentication message parsing into a separate function · aa0eaef4
      Steve Holme authored
      ...in preparation for upcoming modifications.
      aa0eaef4
  2. 26 Oct, 2013 7 commits
  3. 25 Oct, 2013 9 commits
  4. 23 Oct, 2013 7 commits
  5. 22 Oct, 2013 1 commit
  6. 21 Oct, 2013 4 commits
    • Daniel Stenberg's avatar
    • Daniel Stenberg's avatar
      glob: fix regression from commit 5ca96cb8 · 867b52a7
      Daniel Stenberg authored
      Plain strings after glob ranges/lists weren't treated correctly but
      caused broken URLs to get used.
      
      Reported-by: Javier Barroso
      867b52a7
    • Rémy Léone's avatar
      Adding a .travis.yml file to use the travis-ci.org · be31924f
      Rémy Léone authored
      From wikipedia:
      
      Travis CI is a hosted, distributed continuous integration service used
      to build and test projects hosted at GitHub.
      
      Travis CI is configured by adding a file named .travis.yml, which is a
      YAML format text file, to the root directory of the GitHub repository.
      
      Travis CI automatically detects when a commit has been made and pushed
      to a GitHub repository that is using Travis CI, and each time this
      happens, it will try to build the project and run tests. This includes
      commits to all branches, not just to the master branch. When that
      process has completed, it will notify a developer in the way it has been
      configured to do so — for example, by sending an email containing the
      test results (showing success or failure), or by posting a message on an
      IRC channel. It can be configured to run the tests on a range of
      different machines, with different software installed (such as older
      versions of a programming language, to test for compatibility).
      be31924f
    • Kamil Dudka's avatar
      ssh: initialize per-handle data in ssh_connect() · f70b2c77
      Kamil Dudka authored
      ... if not already initialized.  This fixes a regression introduced by
      commit 4ad8e142, which caused test619
      to intermittently fail on certain machines (namely Fedora build hosts).
      f70b2c77
  7. 20 Oct, 2013 2 commits
  8. 19 Oct, 2013 6 commits