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

12

/freebsd-12-stable/contrib/ipfilter/lib/
H A Dflags.c24 u_char flags[] = { TH_FIN, TH_SYN, TH_RST, TH_PUSH, TH_ACK, TH_URG,
H A Dprintpacket.c96 if (tcp->th_flags & TH_PUSH)
H A Dipft_tx.c29 static u_char myflags[] = { TH_FIN, TH_SYN, TH_RST, TH_PUSH,
/freebsd-12-stable/contrib/tcpdump/
H A Dtcp.h59 #define TH_PUSH 0x08 macro
H A Dprint-cnfp.c227 flags & TH_PUSH ? "P" : "",
323 flags & TH_PUSH ? "P" : "",
419 flags & TH_PUSH ? "P" : "",
H A Dprint-tcp.c108 { TH_PUSH, "P" },
/freebsd-12-stable/sys/netinet/
H A Dtcp.h69 #define TH_PUSH 0x08 macro
75 #define TH_FLAGS (TH_FIN|TH_SYN|TH_RST|TH_PUSH|TH_ACK|TH_URG|TH_ECE|TH_CWR)
H A Dtcp_lro.c685 if ((th->th_flags & ~(TH_ACK | TH_PUSH)) != 0) {
H A Dtcp_output.c1070 flags |= TH_PUSH;
/freebsd-12-stable/sys/net/
H A Dslcompress.c359 if (th->th_flags & TH_PUSH)
526 th->th_flags |= TH_PUSH;
528 th->th_flags &=~ TH_PUSH;
/freebsd-12-stable/usr.sbin/ppp/
H A Dslcompress.c373 if (th->th_flags & TH_PUSH)
508 th->th_flags |= TH_PUSH;
510 th->th_flags &= ~TH_PUSH;
/freebsd-12-stable/cddl/lib/libdtrace/
H A Dtcp.d91 #pragma D binding "1.6.3" TH_PUSH
92 inline uint8_t TH_PUSH = 0x08;
330 flags & TH_PUSH ? "PUSH" :
/freebsd-12-stable/contrib/ipfilter/ipsend/
H A Dipsend.c390 tcp->th_flags |= TH_PUSH;
H A Diptests.c948 for (i = 0; i <= (TH_URG|TH_ACK|TH_PUSH|TH_RST|TH_SYN|TH_FIN);
/freebsd-12-stable/sys/contrib/ipfilter/netinet/
H A Dip_compat.h714 #define TCPF_ALL (TH_FIN|TH_SYN|TH_RST|TH_PUSH|TH_ACK|TH_URG|\
840 #ifndef TH_PUSH
841 # define TH_PUSH 0x08 macro
/freebsd-12-stable/usr.sbin/trpt/
H A Dtrpt.c404 pf(TH_PUSH, "PUSH");
/freebsd-12-stable/sys/dev/mlx5/mlx5_en/
H A Dmlx5_en_rx.c166 th->th_flags |= TH_PUSH;
/freebsd-12-stable/sys/netinet/tcp_stacks/
H A Drack_bbr_common.c542 thflags &= ~(TH_PUSH | TH_FIN);
/freebsd-12-stable/sys/dev/sfxge/
H A Dsfxge_tx.c1257 tcp_flags &= ~(TH_FIN | TH_PUSH);
1330 tsoh_th->th_flags &= ~(TH_FIN | TH_PUSH);
H A Dsfxge_rx.c489 c_th->th_flags |= (th->th_flags & TH_PUSH);
/freebsd-12-stable/sys/dev/qlxgbe/
H A Dql_isr.c303 th->th_flags |= TH_PUSH;
/freebsd-12-stable/contrib/ipfilter/iplang/
H A Diplang_y.y1077 static int flagv[] = { TH_ACK, TH_SYN, TH_URG, TH_RST, TH_PUSH,
/freebsd-12-stable/contrib/ipfilter/tools/
H A Dipmon.c83 { TH_PUSH,'P' },
/freebsd-12-stable/sys/netpfil/pf/
H A Dpf_norm.c1416 if ((flags & TH_FIN) || (flags & TH_PUSH) || (flags & TH_URG))
/freebsd-12-stable/usr.sbin/bhyve/
H A Dpci_e82545.c1412 ~(TH_FIN | TH_PUSH);

Completed in 149 milliseconds

12