/freebsd/sbin/ipf/libipf/ |
H A D | flags.c | 26 uint16_t flags[] = { TH_FIN, TH_SYN, TH_RST, TH_PUSH, TH_ACK, TH_URG,
|
H A D | printpacket.c | 94 if (tcpflags & TH_PUSH) in printpacket()
|
H A D | ipft_tx.c | 24 static uint16_t myflags[] = { TH_FIN, TH_SYN, TH_RST, TH_PUSH,
|
/freebsd/contrib/tcpdump/ |
H A D | print-cnfp.c | 231 flags & TH_PUSH ? "P" : "", in cnfp_v1_print() 333 flags & TH_PUSH ? "P" : "", in cnfp_v5_print() 435 flags & TH_PUSH ? "P" : "", in cnfp_v6_print()
|
H A D | tcp.h | 58 #define TH_PUSH 0x08 macro
|
H A D | print-tcp.c | 108 { TH_PUSH, "P" },
|
/freebsd/sys/net/ |
H A D | slcompress.c | 354 if (tcp_get_flags(th) & TH_PUSH) in sl_compress_tcp() 519 tcp_set_flags(th, tcp_get_flags(th) | TH_PUSH); in sl_uncompress_tcp_core() 521 tcp_set_flags(th, tcp_get_flags(th) & ~TH_PUSH); in sl_uncompress_tcp_core()
|
/freebsd/cddl/lib/libdtrace/ |
H A D | tcp.d | 89 #pragma D binding "1.6.3" TH_PUSH 90 inline uint16_t TH_PUSH = 0x08; variable 330 flags & TH_PUSH ? "PUSH" :
|
/freebsd/usr.sbin/ppp/ |
H A D | slcompress.c | 369 if (__tcp_get_flags(th) & TH_PUSH) in sl_compress_tcp() 504 __tcp_set_flags(th, __tcp_get_flags(th) | TH_PUSH); in sl_uncompress_tcp() 506 __tcp_set_flags(th, __tcp_get_flags(th) & ~TH_PUSH); in sl_uncompress_tcp()
|
/freebsd/sys/netinet/ |
H A D | tcp.h | 65 #define TH_PUSH 0x08 macro 74 #define TH_FLAGS (TH_FIN|TH_SYN|TH_RST|TH_PUSH|TH_ACK|TH_URG|TH_ECE|TH_CWR|TH_AE)
|
H A D | tcp_lro.c | 1006 if ((tcp_get_flags(th) & ~(TH_ACK | TH_PUSH)) != 0) { in tcp_lro_condense() 1050 if ((tcp_get_flags(th) & ~(TH_ACK | TH_PUSH)) != 0) { in tcp_lro_condense()
|
H A D | tcp_lro_hpts.c | 132 if ((tcp_get_flags(th) & ~(TH_ACK | TH_PUSH | TH_ECE | TH_CWR)) != 0) in tcp_lro_ack_valid()
|
H A D | tcp_output.c | 1127 flags |= TH_PUSH; in tcp_default_output()
|
/freebsd/sbin/ipf/ipsend/ |
H A D | ipsend.c | 380 __tcp_set_flags(tcp, __tcp_get_flags(tcp) | TH_PUSH); in main()
|
/freebsd/sys/netpfil/ipfilter/netinet/ |
H A D | ip_compat.h | 821 #ifndef TH_PUSH 822 # define TH_PUSH 0x08 macro
|
/freebsd/sys/netinet/tcp_stacks/ |
H A D | rack_bbr_common.c | 641 thflags &= ~(TH_PUSH | TH_FIN); in ctf_drop_checks()
|
/freebsd/sys/dev/mlx5/mlx5_en/ |
H A D | mlx5_en_rx.c | 190 tcp_set_flags(th, tcp_get_flags(th) | TH_PUSH); in mlx5e_lro_update_hdr()
|
/freebsd/sys/dev/sfxge/ |
H A D | sfxge_tx.c | 1249 tcp_flags &= ~(TH_FIN | TH_PUSH); in tso_start_new_packet() 1322 tcp_set_flags(tsoh_th, tcp_get_flags(tsoh_th) & ~(TH_FIN | TH_PUSH)); in tso_start_new_packet()
|
H A D | sfxge_rx.c | 486 tcp_set_flags(c_th, tcp_get_flags(c_th) | (tcp_get_flags(th) & TH_PUSH)); in sfxge_lro_merge()
|
/freebsd/sys/dev/qlxgbe/ |
H A D | ql_isr.c | 283 tcp_set_flags(th, tcp_get_flags(th) | TH_PUSH); in qla_lro_intr()
|
/freebsd/sys/dev/cxgbe/crypto/ |
H A D | t6_kern_tls.c | 1183 tcp_set_flags(&newtcp, tcp_get_flags(&newtcp) & ~(TH_PUSH | TH_FIN)); in ktls_write_tcp_options() 1772 if (last_wr && tcp_get_flags(tcp) & TH_PUSH) in ktls_write_tls_wr()
|
/freebsd/sbin/ipf/iplang/ |
H A D | iplang_y.y | 1049 static int flagv[] = { TH_ACK, TH_SYN, TH_URG, TH_RST, TH_PUSH, in set_tcpflags()
|
/freebsd/sbin/ipf/ipmon/ |
H A D | ipmon.c | 78 { TH_PUSH,'P' },
|
/freebsd/sys/netpfil/pf/ |
H A D | pf_norm.c | 1387 if ((flags & TH_FIN) || (flags & TH_PUSH) || (flags & TH_URG)) in pf_normalize_tcp()
|
/freebsd/usr.sbin/bhyve/ |
H A D | pci_e82545.c | 1434 ~(TH_FIN | TH_PUSH); in e82545_transmit()
|