Home
last modified time | relevance | path

Searched refs:TH_PUSH (Results 1 – 21 of 21) sorted by relevance

/titanic_50/usr/src/cmd/ipf/lib/common/
H A Dflags.c22 u_char flags[] = { TH_FIN, TH_SYN, TH_RST, TH_PUSH, TH_ACK, TH_URG,
H A Dprintpacket.c73 if (tcp->th_flags & TH_PUSH)
H A Dipft_tx.c37 static u_char myflags[] = { TH_FIN, TH_SYN, TH_RST, TH_PUSH,
/titanic_50/usr/src/uts/common/netinet/
H A Dtcp.h67 #define TH_PUSH 0x08 macro
/titanic_50/usr/src/cmd/dtrace/demo/tcp/
H A Dtcpioflags.d57 printf("%s", args[4]->tcp_flags & TH_PUSH ? "PUSH|" : "");
H A Dtcpsnoop.d71 printf("%s", args[4]->tcp_flags & TH_PUSH ? "PUSH|" : "");
/titanic_50/usr/src/uts/common/io/ppp/spppcomp/
H A Dvjcompress.c407 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 Dtcp.sed.in33 SED_REPLACE(TH_PUSH)
H A Dtcp.d.in34 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 Dsnoop_tcp.c71 { 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 Dmyri10ge_lro.c175 if ((tcp->th_flags & ~(TH_ACK | TH_PUSH)) != 0) in myri10ge_lro_rx()
/titanic_50/usr/src/uts/common/inet/ipf/netinet/
H A Dip_compat.h1811 #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 Dnxge_send.c1600 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 Dtcp_output.c1261 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 Dtcp_input.c3234 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 Dip.c1018 { "PSH", TH_PUSH, TH_PUSH },
/titanic_50/usr/src/cmd/cmd-inet/usr.bin/pppd/
H A Dipcp.c1915 if (val & TH_PUSH)
/titanic_50/usr/src/cmd/ipf/tools/
H A Dipmon.c131 { TH_PUSH,'P' },
/titanic_50/usr/src/stand/lib/tcp/
H A Dtcp.c3209 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 Dip_state.c3613 if (!(tcpflags & TH_PUSH) && !dlen)
H A Dfil.c1106 } else if ((flags & (TH_URG|TH_PUSH|TH_FIN)) != 0) {