diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-12-21 19:10:59 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-12-21 19:10:59 +0000 |
commit | eaf7e70b014464294ce9622dc47b0f17a099fbb7 (patch) | |
tree | 2ec74ac844fb2cd4226de2471c061aaff0452055 /slirp/tcp.h | |
parent | 8bdc2159db1dc9eec69652a74fb503c0a1953bc2 (diff) |
Enable TCP_NODELAY, by Daniel Jacobowitz.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2257 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'slirp/tcp.h')
-rw-r--r-- | slirp/tcp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/slirp/tcp.h b/slirp/tcp.h index cd7e89110a..0cd3ab3a49 100644 --- a/slirp/tcp.h +++ b/slirp/tcp.h @@ -112,7 +112,7 @@ struct tcphdr { /* * User-settable options (used with setsockopt). */ -/* #define TCP_NODELAY 0x01 */ /* don't delay send to coalesce packets */ +#define TCP_NODELAY 0x01 /* don't delay send to coalesce packets */ /* #define TCP_MAXSEG 0x02 */ /* set maximum segment size */ /* |