| 964 | } |
| 965 | |
| 966 | static void |
| 967 | rip_close(struct socket *so) |
| 968 | { |
| 969 | struct inpcb *inp; |
| 970 | |
| 971 | inp = sotoinpcb(so); |
| 972 | KASSERT(inp != NULL, ("rip_close: inp == NULL")); |
| 973 | |
| 974 | rip_dodisconnect(so, inp); |
| 975 | } |
| 976 | |
| 977 | static int |
| 978 | rip_disconnect(struct socket *so) |
nothing calls this directly
no test coverage detected