mirror of
https://github.com/curl/curl.git
synced 2026-05-30 12:27:29 +03:00
socks: reduce the buffer size to 600 (from 8K)
This is malloc'ed memory and it does not more. Test 742 helps us verify this. Closes #12789
This commit is contained in:
parent
a6c9a33bf8
commit
a3a940702a
1 changed files with 1 additions and 1 deletions
|
|
@ -71,7 +71,7 @@ enum connect_t {
|
|||
CONNECT_DONE /* 17 connected fine to the remote or the SOCKS proxy */
|
||||
};
|
||||
|
||||
#define CURL_SOCKS_BUF_SIZE (8*1024)
|
||||
#define CURL_SOCKS_BUF_SIZE 600
|
||||
|
||||
/* make sure we configure it not too low */
|
||||
#if CURL_SOCKS_BUF_SIZE < 600
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue