/third_party/toybox/lib/ |
D | net.c | 3 int xsocket(int domain, int type, int protocol) in xsocket() function 47 fd = (ai->ai_next ? socket : xsocket)(ai->ai_family, ai->ai_socktype, in xconnbind()
|
D | lib.h | 349 int xsocket(int domain, int type, int protocol);
|
/third_party/toybox/toys/pending/ |
D | arping.c | 57 int fd = xsocket(AF_INET, SOCK_RAW, IPPROTO_RAW); in get_interface() 208 TT.sockfd = xsocket(AF_PACKET, SOCK_DGRAM, 0); in arping_main() 236 int p_fd = xsocket(AF_INET, SOCK_DGRAM, 0); in arping_main()
|
D | traceroute.c | 509 TT.recv_sock = xsocket((TT.istraceroute6 ? AF_INET6 : AF_INET), SOCK_RAW, in traceroute_main() 531 TT.snd_sock = xsocket(AF_INET, SOCK_DGRAM, IPPROTO_UDP); in traceroute_main() 532 else TT.snd_sock = xsocket(AF_INET, SOCK_RAW, IPPROTO_ICMP); in traceroute_main() 557 } else TT.snd_sock = xsocket(AF_INET6, SOCK_DGRAM, IPPROTO_UDP); in traceroute_main() 613 int p_fd = xsocket(AF_INET6, SOCK_DGRAM, 0); in traceroute_main()
|
D | dhcp6.c | 166 fd = xsocket(AF_INET6, SOCK_RAW, IPPROTO_RAW); in get_mac() 246 TT.sock = xsocket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IPV6)); in mode_raw() 566 TT.sock1 = xsocket(PF_INET6, SOCK_DGRAM, 0); in dhcp6_main()
|
D | route.c | 295 sokfd = xsocket(AF_INET, SOCK_DGRAM, 0); in setroute() 375 sockfd = xsocket(AF_INET6, SOCK_DGRAM, 0); in setroute_inet6()
|
D | host.c | 127 int s = xsocket(ai->ai_family, ai->ai_socktype, ai->ai_protocol); in host_main()
|
D | tftpd.c | 252 TT.sfd = xsocket(dstaddr.ss_family, SOCK_DGRAM, 0); in tftpd_main()
|
D | arp.c | 210 TT.sockfd = xsocket(AF_INET, SOCK_STREAM, 0); in arp_main()
|
D | ip.c | 693 fd = xsocket(AF_INET, SOCK_DGRAM, 0); in link_set() 803 fd = xsocket(AF_INET, SOCK_DGRAM, 0); in print_link_output() 1728 sockfd = xsocket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); in display_route_info() 1864 TT.sockfd = xsocket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); in route_get() 2443 fd = xsocket(AF_INET, SOCK_DGRAM, 0); in tnl_ioctl() 2470 fd = xsocket(AF_INET, SOCK_DGRAM, 0); in display_tunnel() 2655 fd = xsocket(AF_INET, SOCK_DGRAM, 0); in parse_iptunnel_args() 2880 TT.sockfd = xsocket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); in ip_main()
|
D | brctl.c | 315 TT.sockfd = xsocket(AF_INET, SOCK_STREAM, 0); in brctl_main()
|
D | tcpsvd.c | 248 sockfd = xsocket(rp->ai_family, TT.udp ?SOCK_DGRAM :SOCK_STREAM, 0); in create_bind_sock()
|
D | tftp.c | 69 int port = 69, sd = xsocket(TT.af, SOCK_DGRAM, IPPROTO_UDP);
|
D | telnetd.c | 142 s = xsocket(af, SOCK_STREAM, 0); in listen_socket()
|
D | syslogd.c | 267 tfd->logfd = xsocket(AF_INET, SOCK_DGRAM, IPPROTO_UDP); in open_logfiles()
|
D | dhcpd.c | 365 int fd = xsocket(addr_version, SOCK_RAW, IPPROTO_RAW); in get_interface() 782 gstate.listensock = xsocket(PF_INET6, SOCK_DGRAM, 0); in open_listensock6() 830 gstate.listensock = xsocket(PF_INET, SOCK_DGRAM, IPPROTO_UDP); in open_listensock()
|
D | dhcp.c | 285 int fd = xsocket(AF_INET, SOCK_RAW, IPPROTO_RAW); in get_interface()
|
/third_party/toybox/toys/other/ |
D | vconfig.c | 34 int fd = xsocket(AF_INET, SOCK_STREAM, 0); in vconfig_main()
|
/third_party/toybox/toys/net/ |
D | netcat.c | 87 sockfd = xsocket(AF_UNIX, type, 0); in usock()
|
D | sntp.c | 100 } else fd = xsocket(ai->ai_family, SOCK_DGRAM, IPPROTO_UDP); in sntp_main()
|
D | ftpget.c | 149 port = xsocket(si6.sin6_family, SOCK_STREAM, 0); in ftpget_main()
|
D | ifconfig.c | 379 TT.sockfd = xsocket(AF_INET, SOCK_DGRAM, 0); in ifconfig_main() 478 int plen, fd6 = xsocket(AF_INET6, SOCK_DGRAM, 0); in ifconfig_main()
|
/third_party/toybox/porting/liteos_a/toys/net/ |
D | ifconfig.c | 491 int plen, fd6 = xsocket(AF_INET6, SOCK_DGRAM, 0); in ifconfig_main()
|
/third_party/toybox/porting/liteos_a/lib/ |
D | lib.h | 350 int xsocket(int domain, int type, int protocol);
|