| 953 | } |
| 954 | |
| 955 | static void |
| 956 | rip_abort(struct socket *so) |
| 957 | { |
| 958 | struct inpcb *inp; |
| 959 | |
| 960 | inp = sotoinpcb(so); |
| 961 | KASSERT(inp != NULL, ("rip_abort: inp == NULL")); |
| 962 | |
| 963 | rip_dodisconnect(so, inp); |
| 964 | } |
| 965 | |
| 966 | static void |
| 967 | rip_close(struct socket *so) |
nothing calls this directly
no test coverage detected