Fix build warning on Windows.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2270 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
4258b780af
commit
28d657fc0b
|
@ -111,8 +111,14 @@ struct tcphdr {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* User-settable options (used with setsockopt).
|
* User-settable options (used with setsockopt).
|
||||||
|
*
|
||||||
|
* We don't use the system headers on unix because we have conflicting
|
||||||
|
* local structures. We can't avoid the system definitions on Windows,
|
||||||
|
* so we undefine them.
|
||||||
*/
|
*/
|
||||||
|
#undef TCP_NODELAY
|
||||||
#define TCP_NODELAY 0x01 /* don't delay send to coalesce packets */
|
#define TCP_NODELAY 0x01 /* don't delay send to coalesce packets */
|
||||||
|
#undef TCP_MAXSEG
|
||||||
/* #define TCP_MAXSEG 0x02 */ /* set maximum segment size */
|
/* #define TCP_MAXSEG 0x02 */ /* set maximum segment size */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue