Home
last modified time | relevance | path

Searched refs:sock1 (Results 1 – 4 of 4) sorted by relevance

/linux-2.4.37.9/include/linux/
Dnet.h95 int (*socketpair) (struct socket *sock1, struct socket *sock2);
184 SOCKCALL_WRAP(name, socketpair, (struct socket *sock1, struct socket *sock2), \
185 (sock1, sock2)) \
/linux-2.4.37.9/net/ipx/
Daf_ipx.c566 struct sock *sock1 = NULL, *sock2 = NULL; in ipxitf_demux_socket() local
571 sock1 = ncp_connection_hack(intrfc, ipx); in ipxitf_demux_socket()
572 if (!sock1) in ipxitf_demux_socket()
574 sock1 = ipxitf_find_socket(intrfc, ipx->ipx_dest.sock); in ipxitf_demux_socket()
599 if (!sock1 && !sock2) { in ipxitf_demux_socket()
623 if (sock1 && sock2) in ipxitf_demux_socket()
628 if (sock1) in ipxitf_demux_socket()
629 ipxitf_def_skb_handler(sock1, skb1); in ipxitf_demux_socket()
639 out: if (sock1) in ipxitf_demux_socket()
640 sock_put(sock1); in ipxitf_demux_socket()
/linux-2.4.37.9/net/
Dsocket.c932 struct socket *sock1, *sock2; in sys_socketpair() local
940 err = sock_create(family, type, protocol, &sock1); in sys_socketpair()
948 err = sock1->ops->socketpair(sock1, sock2); in sys_socketpair()
954 err = sock_map_fd(sock1); in sys_socketpair()
986 sock_release(sock1); in sys_socketpair()
/linux-2.4.37.9/net/core/
Dsock.c1002 int sock_no_socketpair(struct socket *sock1, struct socket *sock2) in sock_no_socketpair() argument