xref: /minix3/minix/include/net/gen/tcp.h (revision 433d6423c39e34ec4b79c950597bb2d236f886be)
1*433d6423SLionel Sambuc /*
2*433d6423SLionel Sambuc server/ip/gen/tcp.h
3*433d6423SLionel Sambuc */
4*433d6423SLionel Sambuc 
5*433d6423SLionel Sambuc #ifndef __SERVER__IP__GEN__TCP_H__
6*433d6423SLionel Sambuc #define __SERVER__IP__GEN__TCP_H__
7*433d6423SLionel Sambuc 
8*433d6423SLionel Sambuc #define TCP_MIN_HDR_SIZE	20
9*433d6423SLionel Sambuc #define TCP_MAX_HDR_SIZE	60
10*433d6423SLionel Sambuc 
11*433d6423SLionel Sambuc #define TCPPORT_TELNET		23
12*433d6423SLionel Sambuc #define TCPPORT_FINGER		79
13*433d6423SLionel Sambuc 
14*433d6423SLionel Sambuc #define TCPPORT_RESERVED	1024
15*433d6423SLionel Sambuc 
16*433d6423SLionel Sambuc typedef u16_t tcpport_t;
17*433d6423SLionel Sambuc 
18*433d6423SLionel Sambuc #endif /* __SERVER__IP__GEN__TCP_H__ */
19