gonzui


Format: Advanced Search

SearchGoogle itResults 11 - 20 of 25 for funcall:htons (0.02 seconds)
t2ex
bsd_source/t2ex/network/net/src_bsd/netinet/ip_output.c - 67.3KB - 1,940 lines
261:                 ip->ip_v = IPVERSION;
262:                 ip->ip_off = htons(0);
263:                 /* ip->ip_id filled in after we find out source ia */
More results from ip_output.c
bsd_source/t2ex/network/net/src_bsd/netinet/raw_ip.c - 23.3KB - 747 lines
356:                 ip->ip_tos = 0;
357:                 ip->ip_off = htons(0);
358:                 ip->ip_p = inp->inp_ip.ip_p;
More results from raw_ip.c
bsd_source/t2ex/network/net/src_bsd/netinet/tcp_input.c - 167.0KB - 4,503 lines
912:                                     ip->ip_dst.s_addr,
913:                                     htons(hw_csum + tlen + off + IPPROTO_TCP));
914:                         }
More results from tcp_input.c
bsd_source/t2ex/network/net/src_bsd/netinet/tcp_output.c - 62.9KB - 1,704 lines
1398:                 win = (long)(int32_t)(tp->rcv_adv - tp->rcv_nxt);
1399:         th->th_win = htons((u_int16_t) (win>>tp->rcv_scale));
1400:         if (SEQ_GT(tp->snd_up, tp->snd_nxt)) {
More results from tcp_output.c
bsd_source/t2ex/network/net/src_bsd/netinet/tcp_subr.c - 84.9KB - 2,586 lines
647:                 ipov->ih_pr = IPPROTO_TCP;
648:                 ipov->ih_len = htons(sizeof(struct tcphdr));
649:                 if (inp) {
More results from tcp_subr.c
bsd_source/t2ex/network/net/src_bsd/netinet/udp_usrreq.c - 51.8KB - 1,650 lines
390:                             ip->ip_dst.s_addr,
391:                             htons(hw_csum + len + IPPROTO_UDP));
392:                 }
More results from udp_usrreq.c
bsd_source/t2ex/network/net/src_bsd/sys/endian.h - 9.5KB - 353 lines
145: #define HTONL(x)        (x) = htonl((uint32_t)(x))
146: #define HTONS(x)        (x) = htons((uint16_t)(x))
147: #endif  /* LITTLE_ENDIAN || !defined(__lint__) */
bsd_source/t2ex/network/net/src_bsdlib/libc/net/getaddrinfo.c - 74.1KB - 2,420 lines
1154:                         return EAI_SERVICE;
1155:                 port = htons(port);
1156:         } else {
bsd_source/t2ex/network/net/src_bsdlib/libc/net/getservbyport_r.c - 4.0KB - 114 lines
67: 
68:                 port = htons(port);
69:                 if (proto == NULL)
bsd_source/t2ex/network/net/src_bsdlib/libc/net/getservent_r.c - 7.5KB - 263 lines
175:         *cp++ = '\0';
176:         sp->s_port = htons((u_short)atoi(p));
177:         sp->s_proto = cp;