gonzui


Format: Advanced Search

SearchGoogle itResults 11 - 17 of 17 for funcall:htonl (0.04 seconds)
t2ex
bsd_source/t2ex/network/net/src_bsd/netinet/tcp_output.c - 62.9KB - 1,704 lines
1135:                             (tp->t_flags & TF_RCVD_SCALE))) {
1136:                                 *((u_int32_t *) (opt + optlen)) = htonl(
1137:                                         TCPOPT_NOP << 24 |
More results from tcp_output.c
bsd_source/t2ex/network/net/src_bsd/netinet/tcp_subr.c - 84.9KB - 2,586 lines
687:                         ip6->ip6_flow |=
688:                             (htonl(ip6_randomflowlabel()) & IPV6_FLOWLABEL_MASK);
689:                 }
More results from tcp_subr.c
bsd_source/t2ex/network/net/src_bsd/sys/endian.h - 9.5KB - 353 lines
144: #define NTOHS(x)        (x) = ntohs((uint16_t)(x))
145: #define HTONL(x)        (x) = htonl((uint32_t)(x))
146: #define HTONS(x)        (x) = htons((uint16_t)(x))
bsd_source/t2ex/network/net/src_bsdlib/libc/resolv/res_init.c - 36.4KB - 1,026 lines
790:         if (IN_CLASSA(i))
791:                 return (htonl(IN_CLASSA_NET));
792:         else if (IN_CLASSB(i))
More results from res_init.c
t2ex_source/kernel/sysmain/src/network_sample/dhclient.c - 13.2KB - 407 lines
97:         s.sin_family = AF_INET;
98:         s.sin_addr.s_addr = htonl(INADDR_ANY);
99:         s.sin_port = htons(DHCP_CLIENT_PORT);
More results from dhclient.c
t2ex_source/kernel/sysmain/src/network_sample/net_conf.c - 7.2KB - 233 lines
87:         NETDBG("Assign INADDR_ANY to Neta before transmitting DHCP packets.");
88:         set_ifaddr("Neta", htonl(INADDR_ANY), htonl(INADDR_ANY));
89: 
More results from net_conf.c
t2ex_source/kernel/sysmain/src/network_sample/net_test.c - 12.1KB - 415 lines
147:         sa.sin_family = AF_INET;
148:         sa.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
149:         sa.sin_port = htons(12345);
More results from net_test.c