Searched refs:TCPS_ESTABLISHED (Results 1 - 16 of 16) sorted by relevance

/xnu-2422.115.4/bsd/netinet/
H A Dtcp_fsm.h79 /* states < TCPS_ESTABLISHED are those where connections not established */
80 #define TCPS_ESTABLISHED 4 /* established */ macro
96 #define TCP6S_ESTABLISHED TCPS_ESTABLISHED
105 #define TCPS_HAVEESTABLISHED(s) ((s) >= TCPS_ESTABLISHED)
H A Dtcp_timer.h242 #define TCP_ADD_REXMTSLOP(tp) (tp->t_state >= TCPS_ESTABLISHED)
H A Dtcp_newreno.c346 if (tp->t_state >= TCPS_ESTABLISHED) {
H A Dtcp_output.c908 tp->t_state != TCPS_ESTABLISHED) {
1004 if (SACK_ENABLED(tp) && (tp->t_state >= TCPS_ESTABLISHED) &&
1996 (tp->t_state == TCPS_ESTABLISHED)) {
2018 if (sendalot == 0 || (tp->t_state != TCPS_ESTABLISHED) ||
2268 (tp->t_state == TCPS_ESTABLISHED) && (sack_in_progress == 0) &&
2349 tp->t_state == TCPS_ESTABLISHED) {
2395 if (tp->t_state < TCPS_ESTABLISHED && tp->t_rxtshift == 0 &&
H A Dtcp_timer.c697 tp->t_state == TCPS_ESTABLISHED) {
710 (tp->t_state == TCPS_ESTABLISHED) &&
745 if (tcp_pmtud_black_hole_detect && (tp->t_state == TCPS_ESTABLISHED)) {
932 if (tp->t_state < TCPS_ESTABLISHED)
1029 if ((tp->t_state == TCPS_ESTABLISHED) &&
H A Dtcp_input.c889 tp->t_state == TCPS_ESTABLISHED) {
2092 if (tp->t_state == TCPS_ESTABLISHED && tlen > 0) {
2133 if (ip_ecn == IPTOS_ECN_CE && tp->t_state == TCPS_ESTABLISHED &&
2153 if (tp->t_state == TCPS_ESTABLISHED &&
2229 if (tp->t_state == TCPS_ESTABLISHED &&
2299 * Since we check for TCPS_ESTABLISHED above, it can only
2302 if (tp->t_state == TCPS_ESTABLISHED &&
2817 struct tcpcb *, tp, int32_t, TCPS_ESTABLISHED);
2818 tp->t_state = TCPS_ESTABLISHED;
2895 case TCPS_ESTABLISHED
[all...]
H A Dtcp_ledbat.c376 if (tp->t_state >= TCPS_ESTABLISHED) {
H A Dip_compat.h507 /* states < TCPS_ESTABLISHED are those where connections not established */
508 #define TCPS_ESTABLISHED 4 /* established */
H A Dtcp_usrreq.c2250 if (tp->t_state < TCPS_ESTABLISHED)
2297 case TCPS_ESTABLISHED:
H A Dtcp_subr.c1297 if (tp->t_state == TCPS_ESTABLISHED &&
1301 } else if (tp->t_state < TCPS_ESTABLISHED && tp->t_rxtshift > 3 &&
H A Dmptcp_opt.c1860 if (tp->t_state != TCPS_ESTABLISHED) {
H A Dmptcp_subr.c4312 if (tp->t_state != TCPS_ESTABLISHED)
/xnu-2422.115.4/bsd/dev/dtrace/scripts/
H A Dtcp.d59 inline int TCPS_ESTABLISHED = 4;
60 #pragma D binding "1.0" TCPS_ESTABLISHED
178 T->t_state == TCPS_ESTABLISHED ? "state-established" :
218 I == TCPS_ESTABLISHED ? "state-established" :
/xnu-2422.115.4/bsd/net/
H A Dpf_norm.c2586 if ((src->state >= TCPS_ESTABLISHED &&
2587 dst->state >= TCPS_ESTABLISHED) &&
2627 ((src->state == TCPS_ESTABLISHED && dst->state == TCPS_ESTABLISHED)
H A Dpf.c5967 TCPS_ESTABLISHED;
6187 dst->state = TCPS_ESTABLISHED;
6188 if (src->state == TCPS_ESTABLISHED &&
6208 else if (src->state < TCPS_ESTABLISHED ||
6209 dst->state < TCPS_ESTABLISHED)
H A Dntstat.c928 out_counts->nstat_connectsuccesses = tp->t_state >= TCPS_ESTABLISHED ? 1 : 0;

Completed in 160 milliseconds