Home
last modified time | relevance | path

Searched refs:__tcp_get_flags (Results 1 – 13 of 13) sorted by relevance

/freebsd/sbin/ipf/ipsend/
H A Dipsend.c368 __tcp_set_flags(tcp, __tcp_get_flags(tcp) | TH_SYN); in main()
371 __tcp_set_flags(tcp, __tcp_get_flags(tcp) | TH_ACK); in main()
374 __tcp_set_flags(tcp, __tcp_get_flags(tcp) | TH_FIN); in main()
377 __tcp_set_flags(tcp, __tcp_get_flags(tcp) | TH_RST); in main()
380 __tcp_set_flags(tcp, __tcp_get_flags(tcp) | TH_PUSH); in main()
383 __tcp_set_flags(tcp, __tcp_get_flags(tcp) | TH_URG); in main()
386 __tcp_set_flags(tcp, __tcp_get_flags(tcp) | TH_ECE); in main()
389 __tcp_set_flags(tcp, __tcp_get_flags(tcp) | TH_CWR); in main()
392 __tcp_set_flags(tcp, __tcp_get_flags(tcp) | TH_AE); in main()
402 if (ip->ip_p == IPPROTO_TCP && __tcp_get_flags(tcp) != 0) in main()
[all …]
H A Dresend.c54 if (__tcp_get_flags(t) & i) in dumppacket()
H A Dip.c264 if ((__tcp_get_flags(t2) == TH_SYN) && !ntohs(ip->ip_off) && in send_tcp()
H A Diptests.c1111 __tcp_set_flags(t, __tcp_get_flags(t) & ~TH_URG); in ip_test5()
/freebsd/usr.sbin/ppp/
H A Dslcompress.c182 if ((__tcp_get_flags(th) & (TH_SYN | TH_FIN | TH_RST | TH_ACK)) != TH_ACK) { in sl_compress_tcp()
183 log_Printf(LogDEBUG, "??? 2 th_flags = %x\n", __tcp_get_flags(th)); in sl_compress_tcp()
286 if (__tcp_get_flags(th) & TH_URG) { in sl_compress_tcp()
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()
525 __tcp_set_flags(th, __tcp_get_flags(th) | TH_URG); in sl_uncompress_tcp()
528 __tcp_set_flags(th, __tcp_get_flags(th) & ~TH_URG); in sl_uncompress_tcp()
H A Dip.c374 estab = __tcp_get_flags(th) & TH_ACK; in FilterCheck()
375 syn = __tcp_get_flags(th) & TH_SYN; in FilterCheck()
376 finrst = __tcp_get_flags(th) & (TH_FIN|TH_RST); in FilterCheck()
381 __tcp_get_flags(th), sport, dport); in FilterCheck()
833 if (__tcp_get_flags(th) & mask) { in PacketCheck()
842 if ((__tcp_get_flags(th) & TH_SYN) && nb > 40) { in PacketCheck()
H A Dtcpmss.c118 if (!(__tcp_get_flags(tc) & TH_SYN)) in MSSFixup()
/freebsd/sbin/ipf/libipf/
H A Dipft_tx.c271 __tcp_set_flags(tcp, __tcp_get_flags(tcp) | in parseline()
273 if (__tcp_get_flags(tcp)) in parseline()
277 if (__tcp_get_flags(tcp) & TH_URG) in parseline()
443 __tcp_set_flags(tcp, __tcp_get_flags(tcp) | in parseipv6()
445 if (__tcp_get_flags(tcp)) in parseipv6()
449 if (__tcp_get_flags(tcp) & TH_URG) in parseipv6()
H A Dprintpacket.c86 ((tcpflags = __tcp_get_flags(tcp)) != 0)) { in printpacket()
/freebsd/sys/netinet/
H A Dtcp.h83 __tcp_get_flags(const struct tcphdr *th) in __tcp_get_flags() function
96 #define tcp_get_flags(th) __tcp_get_flags(th)
/freebsd/sys/netinet/libalias/
H A Dalias.c1076 TcpMonitorIn(__tcp_get_flags(tc), lnk); in TcpAliasIn()
1165 TcpMonitorOut(__tcp_get_flags(tc), lnk); in TcpAliasOut()
/freebsd/sbin/ipf/iplang/
H A Diplang_y.y1062 __tcp_set_flags(tcp, __tcp_get_flags(tcp) | in set_tcpflags()
/freebsd/sbin/ipf/ipmon/
H A Dipmon.c1200 if (__tcp_get_flags(tp) & tcpfl[i].value) in print_ipflog()