diff options
author | Yang Tse <yangsita@gmail.com> | 2011-08-29 14:27:06 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-08-29 14:27:06 +0200 |
commit | 5a45dc4a29b7b65406b8e3d1a78bed99478a9a3a (patch) | |
tree | cc7b6a22b9f0c8d8b0c1c0a5666f4c1eb9da4117 /lib/pingpong.h | |
parent | 78199b6030e07112d1515272afd7017337fa79c7 (diff) | |
download | curl-5a45dc4a29b7b65406b8e3d1a78bed99478a9a3a.tar.gz |
pingpong.c: fix Curl_pp_vsendf() arbitrary restrictions on command length
This removes command length restrictions on calling functions.
Diffstat (limited to 'lib/pingpong.h')
-rw-r--r-- | lib/pingpong.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/pingpong.h b/lib/pingpong.h index 370fd7a76..1d104cfbc 100644 --- a/lib/pingpong.h +++ b/lib/pingpong.h @@ -98,9 +98,6 @@ long Curl_pp_state_timeout(struct pingpong *pp); * the string should not have any CRLF appended, as this function will * append the necessary things itself. * - * NOTE: we build the command in a fixed-length buffer, which sets length - * restrictions on the command! - * * made to never block */ CURLcode Curl_pp_sendf(struct pingpong *pp, @@ -114,9 +111,6 @@ CURLcode Curl_pp_sendf(struct pingpong *pp, * the string should not have any CRLF appended, as this function will * append the necessary things itself. * - * NOTE: we build the command in a fixed-length buffer, which sets length - * restrictions on the command! - * * made to never block */ CURLcode Curl_pp_vsendf(struct pingpong *pp, |