1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
/*++
/* NAME
/* inet_windowsize 3
/* SUMMARY
/* TCP window scaling control
/* SYNOPSIS
/* #include <iostuff.h>
/*
/* int inet_windowsize;
/*
/* void set_inet_windowsize(sock, windowsize)
/* int sock;
/* int windowsize;
/* DESCRIPTION
/* set_inet_windowsize() overrides the default TCP window size
/* with the specified value. When called before listen() or
/* accept(), this works around broken infrastructure that
/* mis-handles TCP window scaling options.
/*
/* The global inet_windowsize variable is available for other
/* routines to remember that they wish to override the default
/* TCP window size. The variable is not accessed by the
/* set_inet_windowsize() function itself.
/*
/* Arguments:
/* .IP sock
/* TCP communication endpoint, before the connect(2) or listen(2) call.
/* .IP windowsize
/* The preferred TCP window size. This must be > 0.
/* DIAGNOSTICS
/* Panic: interface violation.
/* Warnings: some error return from setsockopt().
/* LICENSE
/* .ad
/* .fi
/* The Secure Mailer license must be distributed with this software.
/* AUTHOR(S)
/* Wietse Venema
/* IBM T.J. Watson Research
/* P.O. Box 704
/* Yorktown Heights, NY 10598, USA
/*--*/
/* System libraries. */
#include <sys_defs.h>
#include <sys/socket.h>
/* Utility library. */
#include <msg.h>
#include <iostuff.h>
/* Application storage. */
/*
* Tunable to work around broken routers.
*/
int inet_windowsize = 0;
/* set_inet_windowsize - set TCP send/receive window size */
void set_inet_windowsize(int sock, int windowsize)
{
/*
* Sanity check.
*/
if (windowsize <= 0)
msg_panic("inet_windowsize: bad window size %d", windowsize);
/*
* Generic implementation: set the send and receive buffer size before
* listen() or connect().
*/
if (setsockopt(sock, SOL_SOCKET, SO_SNDBUF, (void *) &windowsize,
sizeof(windowsize)) < 0)
msg_warn("setsockopt SO_SNDBUF %d: %m", windowsize);
if (setsockopt(sock, SOL_SOCKET, SO_RCVBUF, (void *) &windowsize,
sizeof(windowsize)) < 0)
msg_warn("setsockopt SO_RCVBUF %d: %m", windowsize);
}
|