PSPSDK 1.0+beta2
Loading...
Searching...
No Matches
tcp.h
Go to the documentation of this file.
1#ifndef __NETINET_TCP_H__
2#define __NETINET_TCP_H__
3
4#include <netinet/in.h>
5
6#define SOL_TCP IPPROTO_TCP
7
8/* Socket options */
9#define TCP_NODELAY 0x01 /* don't delay send to coalesce packets */
10#define TCP_MAXSEG 0x02 /* set maximum segment size */
11
12#endif