| /src/external/bsd/ipf/bin/ipsend/ |
| tcpip.h | 84 #define ti_urp ti_t.th_urp
|
| /src/external/bsd/tcpdump/dist/ |
| tcp.h | 45 nd_uint16_t th_urp; /* urgent pointer */ member in struct:tcphdr
|
| print-tcp.c | 240 urp = GET_BE_U_2(tp->th_urp);
|
| /src/sys/netinet/ |
| tcp.h | 75 uint16_t th_urp; /* urgent pointer */ member in struct:tcphdr
|
| tcp_debug.c | 186 printf("@%x, urp=%x", ack, th->th_urp);
|
| tcp_input.c | 330 NTOHS(th->th_urp); 343 HTONS(th->th_urp); 349 if (th->th_urp > todrop) { 350 th->th_urp -= todrop; 353 th->th_urp = 0; 2684 if ((tiflags & TH_URG) && th->th_urp && 2692 if (th->th_urp + so->so_rcv.sb_cc > sb_max) { 2693 th->th_urp = 0; /* XXX */ 2712 if (SEQ_GT(th->th_seq+th->th_urp, tp->rcv_up)) { 2713 tp->rcv_up = th->th_seq + th->th_urp; [all...] |
| tcp_var.h | 189 #define ti_urp ti_t.th_urp
|
| tcp_subr.c | 586 n->th_urp = 0; 786 th->th_urp = 0;
|
| tcp_output.c | 1390 th->th_urp = htons((u_int16_t)urp);
|
| /src/sys/net/ |
| slcompress.c | 294 deltaS = ntohs(th->th_urp); 297 } else if (th->th_urp != oth->th_urp) 571 DECODEU(th->th_urp)
|
| /src/external/bsd/ipf/dist/ipsd/Celler/ |
| ip_compat.h | 149 __u16 th_urp; member in struct:__anon6695
|
| /src/external/bsd/ipf/dist/ipsend/ |
| iptests.c | 964 t->th_urp = 0; 1151 t->th_urp = htons(1); 1157 t->th_urp = htons(0x7fff); 1160 t->th_urp = htons(0x8000); 1163 t->th_urp = htons(0xffff); 1166 t->th_urp = 0;
|
| /src/external/bsd/ipf/dist/lib/ |
| ipft_tx.c | 287 tcp->th_urp = htons(1); 461 tcp->th_urp = htons(1);
|
| /src/sys/dist/pf/net/ |
| pf_norm.c | 1366 if (!(flags & TH_URG) && th->th_urp) { 1367 th->th_sum = pf_cksum_fixup(th->th_sum, th->th_urp, 0, 0); 1368 th->th_urp = 0;
|
| /src/sys/kern/ |
| uipc_mbufdebug.c | 855 (*pr)("TCP: Urgent Pointer = %u\n", ntohs(tcp.th_urp));
|
| /src/external/bsd/ipf/dist/iplang/ |
| iplang_y.y | 1085 tcp->th_urp = htons(strtol(*arg, NULL, 0));
|
| /src/sys/external/bsd/ipf/netinet/ |
| ip_fil_netbsd.c | 805 tcp2->th_urp = 0;
|
| fil.c | 1377 if ((flags & TH_URG) != 0 && (tcp->th_urp == 0)) { 1379 DT3(ipf_fi_bad_th_urg, fr_info_t*, fin, u_int, (flags & TH_URG), u_int, tcp->th_urp); 1381 } else if ((flags & TH_URG) == 0 && (tcp->th_urp != 0)) { 1387 DT3(ipf_fi_bad_th_urg0, fr_info_t *, fin, u_int, (flags & TH_URG), u_int, tcp->th_urp);
|