Home
last modified time | relevance | path

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

/linux-3.4.99/net/ipv4/
Dtcp_input.c210 if (tp->ecn_flags & TCP_ECN_OK) in TCP_ECN_queue_cwr()
227 if (!(tp->ecn_flags & TCP_ECN_OK)) in TCP_ECN_check_ce()
249 if ((tp->ecn_flags & TCP_ECN_OK) && (!th->ece || th->cwr)) in TCP_ECN_rcv_synack()
250 tp->ecn_flags &= ~TCP_ECN_OK; in TCP_ECN_rcv_synack()
255 if ((tp->ecn_flags & TCP_ECN_OK) && (!th->ece || !th->cwr)) in TCP_ECN_rcv_syn()
256 tp->ecn_flags &= ~TCP_ECN_OK; in TCP_ECN_rcv_syn()
261 if (th->ece && !th->syn && (tp->ecn_flags & TCP_ECN_OK)) in TCP_ECN_rcv_ecn_echo()
Dtcp_minisocks.c417 tp->ecn_flags = inet_rsk(req)->ecn_ok ? TCP_ECN_OK : 0; in TCP_ECN_openreq_child()
Dtcp_output.c301 if (!(tp->ecn_flags & TCP_ECN_OK)) in TCP_ECN_send_synack()
313 tp->ecn_flags = TCP_ECN_OK; in TCP_ECN_send_syn()
332 if (tp->ecn_flags & TCP_ECN_OK) { in TCP_ECN_send()
Dtcp.c2480 if (tp->ecn_flags & TCP_ECN_OK) in tcp_get_info()
/linux-3.4.99/include/net/
Dtcp.h365 #define TCP_ECN_OK 1 macro