1. 03 Feb, 2010 7 commits
    • Daniel Stenberg's avatar
      more symbols added in 7.20.0 · c9f46446
      Daniel Stenberg authored
      c9f46446
    • Yang Tse's avatar
      · b77d0db5
      Yang Tse authored
      Fix OOM handling
      b77d0db5
    • Yang Tse's avatar
      · 3205ac35
      Yang Tse authored
      Fix progressmode Configurable struct member data type. Changed to
      'int' which fits better with existing CURL_PROGRESS_* definitions.
      3205ac35
    • Yang Tse's avatar
      · 381a4d6e
      Yang Tse authored
      Fix portability issue related with unaligned memory access
      381a4d6e
    • Yang Tse's avatar
      · f6d288a3
      Yang Tse authored
      Fix compiler warnings: conversion from 'const int ' to 'unsigned char ', possible loss of data
      f6d288a3
    • Yang Tse's avatar
      · 013ec6a9
      Yang Tse authored
      cookies with same path length might get sorted in different order when
      using different qsort implementations. In order to make this test give
      same results on different systems, paths now have different lengths.
      013ec6a9
    • Yang Tse's avatar
      · e2fc2944
      Yang Tse authored
      added an additional second to allow test to pass on heavily loaded servers
      e2fc2944
  2. 02 Feb, 2010 13 commits
    • Yang Tse's avatar
      · d1717e7c
      Yang Tse authored
      Fix compiler warning: conditional expression is constant
      d1717e7c
    • Yang Tse's avatar
      · e569ff95
      Yang Tse authored
      Fix compiler warning: local variable may be used without having been initialized.
      e569ff95
    • Yang Tse's avatar
      · 839b61c3
      Yang Tse authored
      Fix compiler warnings: conversion from 'const int ' to 'unsigned char ', possible loss of data
      839b61c3
    • Yang Tse's avatar
      · d28b8d31
      Yang Tse authored
      Fix compiler warnings:
      
      (1) conversion from 'const int ' to 'unsigned char ', possible loss of data
      (2) conditional expression is constant
      d28b8d31
    • Yang Tse's avatar
      · 2dfbd0d0
      Yang Tse authored
      mention a couple of changes back from November
      2dfbd0d0
    • Yang Tse's avatar
      · 54879d77
      Yang Tse authored
      mention run time statistics options
      54879d77
    • Yang Tse's avatar
      · 49ba75af
      Yang Tse authored
      - Symbol CURL_FORMAT_OFF_T now obsoleted, will be removed in a future release,
        symbol will not be available when building with CURL_NO_OLDIES defined. Use
        of CURL_FORMAT_CURL_OFF_T is preferred since 7.19.0
      49ba75af
    • Yang Tse's avatar
      · 232d17ec
      Yang Tse authored
      avoid possibility of using obsoleted stuff
      232d17ec
    • Yang Tse's avatar
      · bafba694
      Yang Tse authored
      remove setup.h inclusion which is already done from test.h inclusion
      bafba694
    • Kamil Dudka's avatar
      da23b16a
    • Yang Tse's avatar
      · 46de140a
      Yang Tse authored
      Fix compiler warning: variable was set but never used
      
      Simplify preprocessor symbol checking
      46de140a
    • Daniel Stenberg's avatar
      Julien Chaffraix pointed out a comment mistake, and I re-indented the code · 17a2c32c
      Daniel Stenberg authored
      slightly while editing
      17a2c32c
    • Yang Tse's avatar
      · 9f6c4daa
      Yang Tse authored
      include headers
      9f6c4daa
  3. 01 Feb, 2010 5 commits
    • Yang Tse's avatar
      · ea721946
      Yang Tse authored
      Conroy added a check to the coded message size since the docs stipulate
      that each call will contain a full protocol packet.
      ea721946
    • Yang Tse's avatar
      · 35e22060
      Yang Tse authored
      Conroy's fix to make the code match with the RTP documentation regarding
      writing out the whole header. The docs say it writes the whole header,
      but the code (before this patch) did not write out the leading $.
      35e22060
    • Daniel Stenberg's avatar
      We introduce a loop in lib/multi.c around all calls to multi_runsingle() and · 55f1e787
      Daniel Stenberg authored
      simply check for CURLM_CALL_MULTI_PERFORM internally. This has the added
      benefit that this goes in line with my long-term wishes to get rid of the
      CURLM_CALL_MULTI_PERFORM all together from the public API.
      55f1e787
    • Yang Tse's avatar
      · 516cf5c8
      Yang Tse authored
      update rtsp server header field from SWS to RTSPD
      516cf5c8
    • Yang Tse's avatar
      · 35fbeda0
      Yang Tse authored
      Test suite support for RTSP
      35fbeda0
  4. 30 Jan, 2010 1 commit
    • Yang Tse's avatar
      · 715e3a80
      Yang Tse authored
      Make Curl_pop3_write() additionally truncate trailing POP3_EOB from received
      string buffer, otherwise Curl_client_write() call with zero size would write
      to the end of string buffer including matched POP3_EOB.
      715e3a80
  5. 29 Jan, 2010 5 commits
    • Yang Tse's avatar
      · 6ebd71d1
      Yang Tse authored
      WIN32 fix, _beginthreadex() may return either 0 or -1L upon failure
      6ebd71d1
    • Yang Tse's avatar
      · 4ee4e66c
      Yang Tse authored
      fix errno usage for WIN32 builds
      4ee4e66c
    • Yang Tse's avatar
      · 4d19ebe7
      Yang Tse authored
      fix printf-style format strings
      4d19ebe7
    • Yang Tse's avatar
      · 5312fdcd
      Yang Tse authored
      Chris Conroy fixed test #568 issues with carriage returns
      5312fdcd
    • Yang Tse's avatar
      · fce02e1c
      Yang Tse authored
      RTSP followup fix. Both the pipelined and non-pipelined case need to
      check for (excess > 0 && !k->ignorebody).
      fce02e1c
  6. 28 Jan, 2010 9 commits
    • Daniel Stenberg's avatar
      - Tommie Gannert pointed out a silly bug in ares_process_fd() since it didn't · 15ddc1f1
      Daniel Stenberg authored
        check for broken connections like ares_process() did. Based on that, I
        merged the two functions into a single generic one with two front-ends.
      15ddc1f1
    • Yang Tse's avatar
      · d65cf788
      Yang Tse authored
      fix printf-style format strings
      d65cf788
    • Yang Tse's avatar
      · ddab9bd2
      Yang Tse authored
      Use 'size_t' for GETNAMEINFO_TYPE_ARG2 definition for VMS.
      
      http://curl.haxx.se/mail/lib-2009-12/0293.html
      ddab9bd2
    • Yang Tse's avatar
      · eff18763
      Yang Tse authored
      portability fix
      eff18763
    • Yang Tse's avatar
      · 3e21f1e9
      Yang Tse authored
      fix printf-style format strings
      3e21f1e9
    • Yang Tse's avatar
      · ccffed99
      Yang Tse authored
      Known bug #64 fixed by Constantine Sapuntzakis and Joshua Kwan in 7.20.0
      ccffed99
    • Yang Tse's avatar
      · 6259bcd5
      Yang Tse authored
      Chris Conroy provided first RTSP tests
      6259bcd5
    • Yang Tse's avatar
      · a4031dbd
      Yang Tse authored
      RTSP tests disabled until test harness RTSP support is updated
      a4031dbd
    • Yang Tse's avatar
      · 2f3bce11
      Yang Tse authored
      Chris Conroy's RTSP followup fixes
      2f3bce11