Rev 4704 | Rev 4742 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4704 | Rev 4707 | ||
---|---|---|---|
Line 29... | Line 29... | ||
29 | /** @addtogroup tcp |
29 | /** @addtogroup tcp |
30 | * @{ |
30 | * @{ |
31 | */ |
31 | */ |
32 | 32 | ||
33 | /** @file |
33 | /** @file |
34 | * \todo |
34 | * TCP module. |
35 | */ |
35 | */ |
36 | 36 | ||
37 | #ifndef __NET_TCP_H__ |
37 | #ifndef __NET_TCP_H__ |
38 | #define __NET_TCP_H__ |
38 | #define __NET_TCP_H__ |
39 | 39 | ||
- | 40 | #include <fibril_sync.h> |
|
- | 41 | ||
- | 42 | #include "../../socket/socket_core.h" |
|
- | 43 | ||
- | 44 | /** Type definition of the TCP global data. |
|
- | 45 | * @see tcp_globals |
|
- | 46 | */ |
|
40 | typedef struct tcp_globals tcp_globals_t; |
47 | typedef struct tcp_globals tcp_globals_t; |
41 | 48 | ||
- | 49 | /** TCP global data. |
|
- | 50 | */ |
|
42 | struct tcp_globals{ |
51 | struct tcp_globals{ |
- | 52 | /** Networking module phone. |
|
- | 53 | */ |
|
- | 54 | int net_phone; |
|
- | 55 | /** IP module phone. |
|
- | 56 | */ |
|
43 | int ip_phone; |
57 | int ip_phone; |
- | 58 | /** ICMP module phone. |
|
- | 59 | */ |
|
44 | int net_phone; |
60 | int icmp_phone; |
- | 61 | /** Last used free port. |
|
- | 62 | */ |
|
- | 63 | int last_used_port; |
|
- | 64 | /** Active sockets. |
|
- | 65 | */ |
|
- | 66 | socket_ports_t sockets; |
|
- | 67 | /** Safety lock. |
|
- | 68 | */ |
|
- | 69 | fibril_rwlock_t lock; |
|
45 | }; |
70 | }; |
46 | 71 | ||
47 | #endif |
72 | #endif |
48 | 73 | ||
49 | /** @} |
74 | /** @} |