| 644 | } |
| 645 | |
| 646 | void |
| 647 | ctf_do_drop(struct mbuf *m, struct tcpcb *tp) |
| 648 | { |
| 649 | |
| 650 | /* |
| 651 | * Drop space held by incoming segment and return. |
| 652 | */ |
| 653 | if (tp != NULL) |
| 654 | INP_WUNLOCK(tp->t_inpcb); |
| 655 | if (m) |
| 656 | m_freem(m); |
| 657 | } |
| 658 | |
| 659 | int |
| 660 | ctf_process_rst(struct mbuf *m, struct tcphdr *th, struct socket *so, struct tcpcb *tp) |
no test coverage detected