Searched refs:tcp_ci (Results 1 - 4 of 4) sorted by relevance

/xnu-2782.1.97/bsd/netinet/
H A Dmptcp_usrreq.c469 struct conninfo_tcp tcp_ci; local
472 *aux_len = sizeof (tcp_ci);
478 bzero(&tcp_ci, sizeof (tcp_ci));
480 tcp_getconninfo(so, &tcp_ci);
482 error = copyout(&tcp_ci, aux_data, sizeof (tcp_ci));
H A Din.c2265 struct conninfo_tcp tcp_ci; local
2269 *aux_len = sizeof (tcp_ci);
2272 copy_len = min(*aux_len, sizeof (tcp_ci));
2273 bzero(&tcp_ci, sizeof (tcp_ci));
2274 tcp_getconninfo(so, &tcp_ci);
2275 error = copyout(&tcp_ci, aux_data, copy_len);
H A Dtcp_usrreq.c1703 tcp_getconninfo(struct socket *so, struct conninfo_tcp *tcp_ci) argument
1705 (void) tcp_lookup_peer_pid_locked(so, &tcp_ci->tcpci_peer_pid);
1706 tcp_fill_info(sototcpcb(so), &tcp_ci->tcpci_tcp_info);
/xnu-2782.1.97/bsd/netinet6/
H A Din6.c4048 struct conninfo_tcp tcp_ci; local
4052 *aux_len = sizeof (tcp_ci);
4055 copy_len = min(*aux_len, sizeof (tcp_ci));
4056 bzero(&tcp_ci, sizeof (tcp_ci));
4057 tcp_getconninfo(so, &tcp_ci);
4058 error = copyout(&tcp_ci, aux_data, copy_len);

Completed in 44 milliseconds