| 1083 | } |
| 1084 | |
| 1085 | static inline void |
| 1086 | tcp_fields_to_net(struct tcphdr *th) |
| 1087 | { |
| 1088 | |
| 1089 | th->th_seq = htonl(th->th_seq); |
| 1090 | th->th_ack = htonl(th->th_ack); |
| 1091 | th->th_win = htons(th->th_win); |
| 1092 | th->th_urp = htons(th->th_urp); |
| 1093 | } |
| 1094 | #endif /* _KERNEL */ |
| 1095 | |
| 1096 | #endif /* _NETINET_TCP_VAR_H_ */ |
no outgoing calls
no test coverage detected