| 1073 | void tcp_log_end_status(struct tcpcb *tp, uint8_t status); |
| 1074 | |
| 1075 | static inline void |
| 1076 | tcp_fields_to_host(struct tcphdr *th) |
| 1077 | { |
| 1078 | |
| 1079 | th->th_seq = ntohl(th->th_seq); |
| 1080 | th->th_ack = ntohl(th->th_ack); |
| 1081 | th->th_win = ntohs(th->th_win); |
| 1082 | th->th_urp = ntohs(th->th_urp); |
| 1083 | } |
| 1084 | |
| 1085 | static inline void |
| 1086 | tcp_fields_to_net(struct tcphdr *th) |
no outgoing calls
no test coverage detected