Home
last modified time | relevance | path

Searched refs:TCP_ECN_OK (Results 1 – 6 of 6) sorted by relevance

/linux-4.1.27/net/ipv4/
Dtcp_dctcp.c88 if ((tp->ecn_flags & TCP_ECN_OK) || in dctcp_init()
Dtcp_input.c208 if (tp->ecn_flags & TCP_ECN_OK) in tcp_ecn_queue_cwr()
255 if (tp->ecn_flags & TCP_ECN_OK) in tcp_ecn_check_ce()
261 if ((tp->ecn_flags & TCP_ECN_OK) && (!th->ece || th->cwr)) in tcp_ecn_rcv_synack()
262 tp->ecn_flags &= ~TCP_ECN_OK; in tcp_ecn_rcv_synack()
267 if ((tp->ecn_flags & TCP_ECN_OK) && (!th->ece || !th->cwr)) in tcp_ecn_rcv_syn()
268 tp->ecn_flags &= ~TCP_ECN_OK; in tcp_ecn_rcv_syn()
273 if (th->ece && !th->syn && (tp->ecn_flags & TCP_ECN_OK)) in tcp_ecn_rcv_ecn_echo()
Dtcp_minisocks.c400 tp->ecn_flags = inet_rsk(req)->ecn_ok ? TCP_ECN_OK : 0; in tcp_ecn_openreq_child()
Dtcp_output.c323 if (!(tp->ecn_flags & TCP_ECN_OK)) in tcp_ecn_send_synack()
347 tp->ecn_flags = TCP_ECN_OK; in tcp_ecn_send_syn()
372 if (tp->ecn_flags & TCP_ECN_OK) { in tcp_ecn_send()
Dtcp.c2628 if (tp->ecn_flags & TCP_ECN_OK) in tcp_get_info()
/linux-4.1.27/include/net/
Dtcp.h394 #define TCP_ECN_OK 1 macro