| 1943 | "List of active local seqpacket sockets"); |
| 1944 | |
| 1945 | static void |
| 1946 | unp_shutdown(struct unpcb *unp) |
| 1947 | { |
| 1948 | struct unpcb *unp2; |
| 1949 | struct socket *so; |
| 1950 | |
| 1951 | UNP_PCB_LOCK_ASSERT(unp); |
| 1952 | |
| 1953 | unp2 = unp->unp_conn; |
| 1954 | if ((unp->unp_socket->so_type == SOCK_STREAM || |
| 1955 | (unp->unp_socket->so_type == SOCK_SEQPACKET)) && unp2 != NULL) { |
| 1956 | so = unp2->unp_socket; |
| 1957 | if (so != NULL) |
| 1958 | socantrcvmore(so); |
| 1959 | } |
| 1960 | } |
| 1961 | |
| 1962 | static void |
| 1963 | unp_drop(struct unpcb *unp) |
no test coverage detected