Searched refs:TH_ACK (Results 1 - 25 of 40) sorted by relevance

12

/freebsd-9.3-release/sys/netinet/
H A Dtcp_fsm.h81 * TH_ACK,TH_SYN,TH_FIN) are totally determined by state, with the proviso
86 TH_RST|TH_ACK, /* 0, CLOSED */
89 TH_SYN|TH_ACK, /* 3, SYN_RECEIVED */
90 TH_ACK, /* 4, ESTABLISHED */
91 TH_ACK, /* 5, CLOSE_WAIT */
92 TH_FIN|TH_ACK, /* 6, FIN_WAIT_1 */
93 TH_FIN|TH_ACK, /* 7, CLOSING */
94 TH_FIN|TH_ACK, /* 8, LAST_ACK */
95 TH_ACK, /* 9, FIN_WAIT_2 */
96 TH_ACK, /* 1
[all...]
H A Dtcp.h68 #define TH_ACK 0x10 macro
72 #define TH_FLAGS (TH_FIN|TH_SYN|TH_RST|TH_PUSH|TH_ACK|TH_URG|TH_ECE|TH_CWR)
H A Dtcp_timewait.c292 tcp_twrespond(tw, TH_ACK);
396 if ((thflags & TH_ACK) == 0)
419 if ((thflags & TH_ACK) == 0)
434 if (thflags != TH_ACK || tlen != 0 ||
436 tcp_twrespond(tw, TH_ACK);
560 if (tw->t_recent && flags == TH_ACK) {
605 if (flags & TH_ACK)
H A Dtcp_input.c1087 if ((thflags & (TH_RST|TH_ACK|TH_SYN)) == TH_ACK) {
1201 if (thflags & TH_ACK) {
1237 KASSERT((thflags & (TH_RST|TH_ACK)) == 0,
1238 ("%s: Listen socket: TH_RST or TH_ACK set", __func__));
1621 (thflags & (TH_SYN|TH_FIN|TH_RST|TH_URG|TH_ACK)) == TH_ACK &&
1885 if ((thflags & TH_ACK) &&
1908 if ((thflags & TH_ACK) &&
1914 if ((thflags & (TH_ACK|TH_RS
[all...]
H A Dtcp_syncache.c535 if (th->th_flags & (TH_ACK|TH_SYN|TH_FIN)) {
925 KASSERT((th->th_flags & (TH_RST|TH_ACK|TH_SYN)) == TH_ACK,
1071 KASSERT((th->th_flags & (TH_RST|TH_ACK|TH_SYN)) == TH_SYN,
1436 th->th_flags = TH_SYN|TH_ACK;
/freebsd-9.3-release/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.c79 if (tcp->th_flags & TH_ACK)
H A Dipft_tx.c36 TH_ACK, TH_URG, TH_ECN, TH_CWR };
/freebsd-9.3-release/contrib/tcpdump/
H A Dtcp.h61 #define TH_ACK 0x10 macro
H A Dprint-cnfp.c173 if (flags & TH_ACK) putchar('A');
H A Dprint-tcp.c102 { TH_ACK, "." },
262 if (!Sflag && (flags & TH_ACK)) {
437 if (flags & TH_ACK) {
/freebsd-9.3-release/contrib/ipfilter/ipsd/Celler/
H A Dip_compat.h63 #ifndef TH_ACK
64 # define TH_ACK 0x10 macro
/freebsd-9.3-release/contrib/ipfilter/ipsend/.OLD/
H A Dip_compat.h63 #ifndef TH_ACK
64 # define TH_ACK 0x10 macro
/freebsd-9.3-release/contrib/pf/tftp-proxy/
H A Dfilter.c304 (TH_SYN|TH_ACK|TH_FIN|TH_RST) : 0);
308 (TH_SYN|TH_ACK|TH_FIN|TH_RST) : NULL);
/freebsd-9.3-release/sys/net/
H A Dslcompress.c180 if ((th->th_flags & (TH_SYN|TH_FIN|TH_RST|TH_ACK)) != TH_ACK)
H A Dflowtable.c880 ((fle->f_flags & (TH_SYN|TH_ACK|TH_FIN)) == 0
884 ((fle->f_flags & (TH_SYN|TH_ACK)) == TH_SYN
886 ((fle->f_flags & (TH_SYN|TH_ACK)) == (TH_SYN|TH_ACK)
/freebsd-9.3-release/usr.sbin/ppp/
H A Dslcompress.c184 if ((th->th_flags & (TH_SYN | TH_FIN | TH_RST | TH_ACK)) != TH_ACK) {
/freebsd-9.3-release/sys/contrib/ipfilter/netinet/
H A Dip_state.c1110 if ((tcp->th_flags & ~(TH_FIN|TH_ACK|TH_ECNALL)) ==
1502 if (flags == (TH_SYN|TH_ACK)) {
1640 if (!(tcpflags & TH_ACK)) { /* Pretend an ack was sent */
1642 } else if (((tcpflags & (TH_ACK|TH_RST)) == (TH_ACK|TH_RST)) &&
1680 } else if ((seq == 0) && (tcpflags == (TH_RST|TH_ACK)) &&
3381 ((tcpflags & TH_ACKMASK) == TH_ACK)) {
3422 } else if ((tcpflags & (TH_SYN|TH_FIN|TH_ACK)) ==
3423 TH_ACK) {
3451 if ((tcpflags & (TH_SYN|TH_FIN|TH_ACK))
[all...]
H A Dip_state.h137 #define TH_OPENING (TH_SYN|TH_ACK)
/freebsd-9.3-release/contrib/ipfilter/ipsend/
H A Dipsend.c405 tcp->th_flags |= TH_ACK;
H A Diptests.c977 for (i = 0; i <= (TH_URG|TH_ACK|TH_PUSH|TH_RST|TH_SYN|TH_FIN);
1032 t->th_flags = TH_ACK;
1145 t->th_flags = TH_ACK|TH_URG;
1172 t->th_flags = TH_ACK;
/freebsd-9.3-release/sys/netpfil/ipfw/
H A Dip_fw_dynamic.c897 if (flags & TH_ACK) {
904 th->th_flags = TH_RST | TH_ACK;
912 th->th_flags = TH_ACK;
/freebsd-9.3-release/contrib/pf/ftp-proxy/
H A Dfilter.c293 pfr.rule.flagset = (TH_SYN|TH_ACK);
/freebsd-9.3-release/usr.sbin/trpt/
H A Dtrpt.c397 pf(TH_ACK, "ACK");
/freebsd-9.3-release/sys/contrib/pf/net/
H A Dpf.c1573 TH_RST|TH_ACK, 0, 0, 0, 1, cur->tag, NULL, NULL);
1922 if (f & TH_ACK)
3733 ntohl(th->th_ack), ack, TH_RST|TH_ACK, 0, 0,
3892 if ((th->th_flags & (TH_SYN|TH_ACK)) == TH_SYN &&
4010 if (pd->proto == IPPROTO_TCP && (th->th_flags & (TH_SYN|TH_ACK)) ==
4043 TH_SYN|TH_ACK, 0, s->src.mss, 0, 1, 0, NULL, NULL);
4292 if ((th->th_flags & TH_ACK) == 0) {
4296 (th->th_flags & (TH_ACK|TH_RST)) == (TH_ACK|TH_RST)) ||
4371 if (th->th_flags & TH_ACK) {
[all...]

Completed in 244 milliseconds

12