Symbol: TH_SYN
usr/src/cmd/cmd-inet/usr.bin/pppd/ipcp.c
1912
if (val & TH_SYN)
usr/src/cmd/cmd-inet/usr.sbin/snoop/snoop_tcp.c
189
dlc_header) + 4, 1), " %s", getflag(tcp->th_flags, TH_SYN,
usr/src/cmd/cmd-inet/usr.sbin/snoop/snoop_tcp.c
68
{ TH_SYN, "Syn" },
usr/src/cmd/ipf/lib/flags.c
22
u_char flags[] = { TH_FIN, TH_SYN, TH_RST, TH_PUSH, TH_ACK, TH_URG,
usr/src/cmd/ipf/lib/ipft_tx.c
35
static u_char myflags[] = { TH_FIN, TH_SYN, TH_RST, TH_PUSH,
usr/src/cmd/ipf/lib/printpacket.c
69
if (tcp->th_flags & TH_SYN)
usr/src/cmd/ipf/tools/ipmon.c
128
{ TH_SYN, 'S' },
usr/src/cmd/mdb/common/modules/ip/ip.c
1016
{ "SYN", TH_SYN, TH_SYN },
usr/src/stand/lib/tcp/tcp.c
2769
if ((flags & (TH_RST | TH_ACK | TH_SYN)) != TH_SYN) {
usr/src/stand/lib/tcp/tcp.c
2780
if (!(flags & TH_SYN)) {
usr/src/stand/lib/tcp/tcp.c
2831
if (!(flags & TH_SYN)) {
usr/src/stand/lib/tcp/tcp.c
2917
flags &= ~TH_SYN;
usr/src/stand/lib/tcp/tcp.c
2946
((flags & TH_SYN) ? 0 : tcp->tcp_snd_ws);
usr/src/stand/lib/tcp/tcp.c
2978
if (seg_seq == tcp->tcp_irs && (flags & TH_SYN) &&
usr/src/stand/lib/tcp/tcp.c
2980
flags &= ~TH_SYN;
usr/src/stand/lib/tcp/tcp.c
3053
flags &= ~(TH_SYN | TH_FIN | TH_URG);
usr/src/stand/lib/tcp/tcp.c
3119
flags &= ~(TH_SYN | TH_URG);
usr/src/stand/lib/tcp/tcp.c
3255
if ((flags & (TH_RST | TH_SYN | TH_URG | TH_ACK)) != TH_ACK) {
usr/src/stand/lib/tcp/tcp.c
3279
if (flags & TH_SYN) {
usr/src/stand/lib/tcp/tcp.c
5221
((tcph->th_flags[0] & TH_SYN) ? 0 : tcp->tcp_snd_ws);
usr/src/stand/lib/tcp/tcp.c
5267
if ((flags & TH_SYN) && gap > 0 && rgap < 0) {
usr/src/stand/lib/tcp/tcp.c
5356
if (flags & TH_SYN) {
usr/src/stand/lib/tcp/tcp.c
5880
flags = TH_SYN;
usr/src/stand/lib/tcp/tcp.c
5932
flags |= TH_SYN;
usr/src/stand/lib/tcp/tcp.c
5969
if (flags & TH_SYN)
usr/src/stand/lib/tcp/tcp.c
6094
if (flags & TH_SYN)
usr/src/uts/common/inet/ipf/fil.c
1082
} else if (((flags & (TH_SYN|TH_FIN)) != 0) &&
usr/src/uts/common/inet/ipf/fil.c
1094
if ((flags == TH_SYN) && (tcp->th_ack != 0)) {
usr/src/uts/common/inet/ipf/fil.c
1104
} else if (!(flags & (TH_RST|TH_SYN))) {
usr/src/uts/common/inet/ipf/ip_fil_solaris.c
1334
tlen = (tcp->th_flags & (TH_SYN|TH_FIN)) ? 1 : 0;
usr/src/uts/common/inet/ipf/ip_fil_solaris.c
2734
if (tcp->th_flags & (TH_SYN | TH_FIN)) {
usr/src/uts/common/inet/ipf/ip_fil_solaris.c
2752
if (tcp->th_flags & (TH_SYN | TH_FIN)) {
usr/src/uts/common/inet/ipf/ip_fil_solaris.c
2836
((tcp == NULL) || ((tcp->th_flags & (TH_SYN | TH_FIN)) == 0)))
usr/src/uts/common/inet/ipf/ip_fil_solaris.c
3023
((tcp == NULL) || ((tcp->th_flags & (TH_SYN | TH_FIN)) == 0)))
usr/src/uts/common/inet/ipf/ip_nat.c
4552
if ((nat->nat_mssclamp != 0) && (tcp->th_flags & TH_SYN) != 0)
usr/src/uts/common/inet/ipf/ip_state.c
1132
if ((fin->fin_flx & FI_OOW) && !(fin->fin_tcpf & TH_SYN))
usr/src/uts/common/inet/ipf/ip_state.c
1343
((tcp->th_flags & TH_SYN) ? 1 : 0) +
usr/src/uts/common/inet/ipf/ip_state.c
1352
TH_SYN &&
usr/src/uts/common/inet/ipf/ip_state.c
1365
if ((tcp->th_flags & TH_OPENING) == TH_SYN)
usr/src/uts/common/inet/ipf/ip_state.c
1669
if ((tcp->th_flags & TH_OPENING) == TH_SYN) {
usr/src/uts/common/inet/ipf/ip_state.c
1721
if (flags == (TH_SYN|TH_ACK)) {
usr/src/uts/common/inet/ipf/ip_state.c
1729
} else if (flags == TH_SYN) {
usr/src/uts/common/inet/ipf/ip_state.c
1812
if (tcpflags & TH_SYN)
usr/src/uts/common/inet/ipf/ip_state.c
1829
((tcpflags & TH_SYN) ? 1 : 0) + ((tcpflags & TH_FIN) ? 1 : 0);
usr/src/uts/common/inet/ipf/ip_state.c
1842
if (!(tcpflags & TH_SYN) && (fdata->td_winflags & TCP_WSCALE_FIRST)) {
usr/src/uts/common/inet/ipf/ip_state.c
2048
((tcp->th_flags & TH_SYN) ? 1 : 0) +
usr/src/uts/common/inet/ipf/ip_state.c
3638
} else if ((tcpflags & TH_OPENING) == TH_SYN) {
usr/src/uts/common/inet/ipf/ip_state.c
3680
if ((tcpflags & ~(TH_ECN|TH_CWR)) == TH_SYN) {
usr/src/uts/common/inet/ipf/ip_state.c
3692
} else if ((tcpflags & (TH_SYN|TH_FIN|TH_ACK)) ==
usr/src/uts/common/inet/ipf/ip_state.c
3721
if ((tcpflags & (TH_SYN|TH_FIN|TH_ACK)) == TH_ACK) {
usr/src/uts/common/inet/ipf/netinet/ip_compat.h
1813
#define TCPF_ALL (TH_FIN|TH_SYN|TH_RST|TH_PUSH|TH_ACK|TH_URG|\
usr/src/uts/common/inet/ipf/netinet/ip_compat.h
2112
#ifndef TH_SYN
usr/src/uts/common/inet/ipf/netinet/ip_compat.h
2128
#define TH_ACKMASK (TH_FIN|TH_SYN|TH_RST|TH_ACK)
usr/src/uts/common/inet/ipf/netinet/ip_ftp_pxy.c
370
tcp2->th_flags = TH_SYN;
usr/src/uts/common/inet/ipf/netinet/ip_ftp_pxy.c
727
tcp2->th_flags = TH_SYN;
usr/src/uts/common/inet/ipf/netinet/ip_rcmd_pxy.c
138
if (tcp->th_flags & TH_SYN) {
usr/src/uts/common/inet/ipf/netinet/ip_rcmd_pxy.c
197
tcp2->th_flags = TH_SYN;
usr/src/uts/common/inet/ipf/netinet/ip_rpcb_pxy.c
1206
tcp.th_flags = TH_SYN;
usr/src/uts/common/inet/ipf/netinet/ip_state.h
142
#define TH_OPENING (TH_SYN|TH_ACK)
usr/src/uts/common/inet/tcp/tcp_input.c
1465
if (!(flags & TH_SYN)) {
usr/src/uts/common/inet/tcp/tcp_input.c
2691
if (!(flags & TH_SYN)) {
usr/src/uts/common/inet/tcp/tcp_input.c
2910
flags &= ~TH_SYN;
usr/src/uts/common/inet/tcp/tcp_input.c
2937
if ((flags & TH_SYN) && !tcp->tcp_active_open) {
usr/src/uts/common/inet/tcp/tcp_input.c
3047
((tcpha->tha_flags & TH_SYN) ? 0 : tcp->tcp_snd_ws);
usr/src/uts/common/inet/tcp/tcp_input.c
3126
if (seg_seq == tcp->tcp_irs && (flags & TH_SYN) &&
usr/src/uts/common/inet/tcp/tcp_input.c
3128
flags &= ~TH_SYN;
usr/src/uts/common/inet/tcp/tcp_input.c
3217
flags &= ~(TH_SYN | TH_FIN | TH_URG);
usr/src/uts/common/inet/tcp/tcp_input.c
3351
flags &= ~(TH_SYN | TH_URG);
usr/src/uts/common/inet/tcp/tcp_input.c
3517
if ((flags & (TH_RST | TH_SYN | TH_URG | TH_ACK)) != TH_ACK) {
usr/src/uts/common/inet/tcp/tcp_input.c
3541
if (flags & TH_SYN) {
usr/src/uts/common/inet/tcp/tcp_output.c
2822
if (flags & TH_SYN) {
usr/src/uts/common/inet/tcp/tcp_output.c
2898
*flags = TH_SYN;
usr/src/uts/common/inet/tcp/tcp_output.c
2935
*flags |= TH_SYN;
usr/src/uts/common/inet/tcp/tcp_output.c
2998
*flags |= TH_SYN;
usr/src/uts/common/inet/tcp/tcp_time_wait.c
616
((tcpha->tha_flags & TH_SYN) ? 0 : tcp->tcp_snd_ws);
usr/src/uts/common/inet/tcp/tcp_time_wait.c
680
if ((flags & TH_SYN) && gap > 0 && rgap < 0) {
usr/src/uts/common/inet/tcp/tcp_time_wait.c
804
if (flags & TH_SYN) {
usr/src/uts/common/io/mac/mac_util.c
796
if (otcph->th_flags[0] & (TH_SYN | TH_RST | TH_URG)) {
usr/src/uts/common/io/nxge/nxge_send.c
1334
VERIFY((otcph->th_flags & (TH_SYN | TH_RST | TH_URG)) == 0);
usr/src/uts/common/io/ppp/spppcomp/vjcompress.c
184
if ((th->th_flags & (TH_SYN|TH_FIN|TH_RST|TH_ACK)) != TH_ACK) {
usr/src/uts/common/io/sfxge/sfxge_rx.c
1407
if (size == 0 || thp->th_flags & (TH_URG | TH_SYN | TH_RST) ||
usr/src/uts/common/io/sfxge/sfxge_tx.c
1630
((thp->th_flags & (TH_URG | TH_SYN)) != 0) ||
usr/src/uts/common/netinet/tcp_fsm.h
54
TH_RST|TH_ACK, 0, TH_SYN, TH_SYN|TH_ACK,