mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] Added comment about SO_SNDBUF for post.
This commit is contained in:
parent
b8fa2039a7
commit
566289ea9d
@ -176,7 +176,6 @@ connect_to_one (ip_address *addr, unsigned short port, int silent)
|
|||||||
if (sock < 0)
|
if (sock < 0)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
#ifdef SO_RCVBUF
|
|
||||||
/* For very small rate limits, set the buffer size (and hence,
|
/* For very small rate limits, set the buffer size (and hence,
|
||||||
hopefully, the size of the kernel window) to the size of the
|
hopefully, the size of the kernel window) to the size of the
|
||||||
limit. That way we don't sleep for more than 1s between network
|
limit. That way we don't sleep for more than 1s between network
|
||||||
@ -186,10 +185,13 @@ connect_to_one (ip_address *addr, unsigned short port, int silent)
|
|||||||
int bufsize = opt.limit_rate;
|
int bufsize = opt.limit_rate;
|
||||||
if (bufsize < 512)
|
if (bufsize < 512)
|
||||||
bufsize = 512;
|
bufsize = 512;
|
||||||
|
#ifdef SO_RCVBUF
|
||||||
setsockopt (sock, SOL_SOCKET, SO_RCVBUF,
|
setsockopt (sock, SOL_SOCKET, SO_RCVBUF,
|
||||||
(char *)&bufsize, sizeof (bufsize));
|
(char *)&bufsize, sizeof (bufsize));
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
|
/* When we add opt.limit_rate support for writing, as with
|
||||||
|
`--post-file', also set SO_SNDBUF here. */
|
||||||
|
}
|
||||||
|
|
||||||
resolve_bind_address ();
|
resolve_bind_address ();
|
||||||
if (bind_address_resolved)
|
if (bind_address_resolved)
|
||||||
|
Loading…
Reference in New Issue
Block a user