/titanic_50/usr/src/cmd/ipf/lib/common/ |
H A D | flags.c | 22 u_char flags[] = { TH_FIN, TH_SYN, TH_RST, TH_PUSH, TH_ACK, TH_URG,
|
H A D | printpacket.c | 73 if (tcp->th_flags & TH_PUSH)
|
H A D | ipft_tx.c | 37 static u_char myflags[] = { TH_FIN, TH_SYN, TH_RST, TH_PUSH,
|
/titanic_50/usr/src/uts/common/netinet/ |
H A D | tcp.h | 67 #define TH_PUSH 0x08 macro
|
/titanic_50/usr/src/cmd/dtrace/demo/tcp/ |
H A D | tcpioflags.d | 57 printf("%s", args[4]->tcp_flags & TH_PUSH ? "PUSH|" : "");
|
H A D | tcpsnoop.d | 71 printf("%s", args[4]->tcp_flags & TH_PUSH ? "PUSH|" : "");
|
/titanic_50/usr/src/uts/common/io/ppp/spppcomp/ |
H A D | vjcompress.c | 407 if (th->th_flags & TH_PUSH) { in vj_compress_tcp() 583 th->th_flags |= TH_PUSH; in vj_uncompress_tcp() 585 th->th_flags &= ~TH_PUSH; in vj_uncompress_tcp()
|
/titanic_50/usr/src/lib/libdtrace/common/ |
H A D | tcp.sed.in | 33 SED_REPLACE(TH_PUSH)
|
H A D | tcp.d.in | 34 inline int TH_PUSH = @TH_PUSH@; variable 35 #pragma D binding "1.6.3" TH_PUSH
|
/titanic_50/usr/src/cmd/cmd-inet/usr.sbin/snoop/ |
H A D | snoop_tcp.c | 71 { TH_PUSH, "Push" }, 183 dlc_header) + 4, 1), " %s", getflag(tcp->th_flags, TH_PUSH, in interpret_tcp()
|
/titanic_50/usr/src/uts/common/io/myri10ge/drv/ |
H A D | myri10ge_lro.c | 175 if ((tcp->th_flags & ~(TH_ACK | TH_PUSH)) != 0) in myri10ge_lro_rx()
|
/titanic_50/usr/src/uts/common/inet/ipf/netinet/ |
H A D | ip_compat.h | 1811 #define TCPF_ALL (TH_FIN|TH_SYN|TH_RST|TH_PUSH|TH_ACK|TH_URG|\ 2116 #ifndef TH_PUSH 2117 # define TH_PUSH 0x08 macro
|
/titanic_50/usr/src/uts/common/io/nxge/ |
H A D | nxge_send.c | 1600 ntcph->th_flags &= ~(TH_FIN | TH_PUSH | TH_RST); in nxge_do_softlso() 1645 ntcph->th_flags &= ~(TH_FIN | TH_PUSH | TH_RST | TH_URG); in nxge_do_softlso()
|
/titanic_50/usr/src/uts/common/inet/tcp/ |
H A D | tcp_output.c | 1261 tcpha->tha_flags = (TH_ACK|TH_PUSH); in tcp_output() 1897 tcpha->tha_flags = (TH_ACK | TH_PUSH); in tcp_send() 3135 flags = TH_ACK | TH_PUSH; in tcp_xmit_mp()
|
H A D | tcp_input.c | 3234 flags |= TH_ACK_NEEDED | TH_PUSH; in tcp_input_data() 4703 boolean_t push = flags & (TH_PUSH|TH_FIN); in tcp_input_data() 4758 } else if ((flags & (TH_PUSH|TH_FIN)) || in tcp_input_data()
|
/titanic_50/usr/src/cmd/mdb/common/modules/ip/ |
H A D | ip.c | 1018 { "PSH", TH_PUSH, TH_PUSH },
|
/titanic_50/usr/src/cmd/cmd-inet/usr.bin/pppd/ |
H A D | ipcp.c | 1915 if (val & TH_PUSH)
|
/titanic_50/usr/src/cmd/ipf/tools/ |
H A D | ipmon.c | 131 { TH_PUSH,'P' },
|
/titanic_50/usr/src/stand/lib/tcp/ |
H A D | tcp.c | 3209 flags |= TH_ACK_NEEDED | TH_PUSH; in tcp_rput_data() 4862 tcph->th_flags[0] = (TH_ACK | TH_PUSH); in tcp_wput_data() 5824 flags = TH_ACK | TH_PUSH; in tcp_xmit_mp()
|
/titanic_50/usr/src/uts/common/inet/ipf/ |
H A D | ip_state.c | 3613 if (!(tcpflags & TH_PUSH) && !dlen)
|
H A D | fil.c | 1106 } else if ((flags & (TH_URG|TH_PUSH|TH_FIN)) != 0) {
|