Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/ipf/lib/
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.c35 static u_char myflags[] = { TH_FIN, TH_SYN, TH_RST, TH_PUSH,
/illumos-gate/usr/src/uts/common/netinet/
H A Dtcp.h68 #define TH_PUSH 0x08 macro
/illumos-gate/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|" : "");
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Dvjcompress.c405 if (th->th_flags & TH_PUSH) { in vj_compress_tcp()
581 th->th_flags |= TH_PUSH; in vj_uncompress_tcp()
583 th->th_flags &= ~TH_PUSH; in vj_uncompress_tcp()
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
H A Dsnoop_tcp.c68 { TH_PUSH, "Push" },
180 dlc_header) + 4, 1), " %s", getflag(tcp->th_flags, TH_PUSH, in interpret_tcp()
/illumos-gate/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
/illumos-gate/usr/src/uts/common/io/myri10ge/drv/
H A Dmyri10ge_lro.c170 if ((tcp->th_flags & ~(TH_ACK | TH_PUSH)) != 0) in myri10ge_lro_rx()
/illumos-gate/usr/src/uts/common/io/nxge/
H A Dnxge_send.c1578 ntcph->th_flags &= ~(TH_FIN | TH_PUSH | TH_RST); in nxge_do_softlso()
1623 ntcph->th_flags &= ~(TH_FIN | TH_PUSH | TH_RST | TH_URG); in nxge_do_softlso()
/illumos-gate/usr/src/uts/common/io/mac/
H A Dmac_util.c1108 ntcph->th_flags[0] &= ~(TH_FIN | TH_PUSH); in mac_sw_lso()
1194 ntcph->th_flags[0] &= ~(TH_FIN | TH_PUSH); in mac_sw_lso()
/illumos-gate/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
/illumos-gate/usr/src/uts/common/inet/tcp/
H A Dtcp_output.c1277 tcpha->tha_flags = (TH_ACK|TH_PUSH); in tcp_output()
1911 tcpha->tha_flags = (TH_ACK | TH_PUSH); in tcp_send()
3155 flags = TH_ACK | TH_PUSH; in tcp_xmit_mp()
H A Dtcp_input.c3377 flags |= TH_ACK_NEEDED | TH_PUSH; in tcp_input_data()
4824 boolean_t push = flags & (TH_PUSH|TH_FIN); in tcp_input_data()
4879 } else if ((flags & (TH_PUSH|TH_FIN)) || in tcp_input_data()
/illumos-gate/usr/src/cmd/mdb/common/modules/ip/
H A Dip.c1019 { "PSH", TH_PUSH, TH_PUSH },
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppd/
H A Dipcp.c1908 if (val & TH_PUSH)
/illumos-gate/usr/src/cmd/ipf/tools/
H A Dipmon.c131 { TH_PUSH,'P' },
/illumos-gate/usr/src/stand/lib/tcp/
H A Dtcp.c3208 flags |= TH_ACK_NEEDED | TH_PUSH; in tcp_rput_data()
4860 tcph->th_flags[0] = (TH_ACK | TH_PUSH); in tcp_wput_data()
5822 flags = TH_ACK | TH_PUSH; in tcp_xmit_mp()
/illumos-gate/usr/src/cmd/bhyve/
H A Dpci_e82545.c1468 ~(TH_FIN | TH_PUSH); in e82545_transmit()
/illumos-gate/usr/src/uts/common/io/sfxge/
H A Dsfxge_rx.c1471 thp->th_flags & TH_PUSH) in sfxge_rx_qflow_add()
H A Dsfxge_tx.c1655 thp->th_flags = start_flags & ~(TH_PUSH | TH_FIN); in sfxge_tx_qlso_fragment()
/illumos-gate/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) {