Home
last modified time | relevance | path

Searched refs:fastopen_req (Results 1 – 4 of 4) sorted by relevance

/linux-4.1.27/net/ipv4/
Dtcp.c1036 if (tp->fastopen_req) { in tcp_free_fastopen_req()
1037 kfree(tp->fastopen_req); in tcp_free_fastopen_req()
1038 tp->fastopen_req = NULL; in tcp_free_fastopen_req()
1050 if (tp->fastopen_req) in tcp_sendmsg_fastopen()
1053 tp->fastopen_req = kzalloc(sizeof(struct tcp_fastopen_request), in tcp_sendmsg_fastopen()
1055 if (unlikely(!tp->fastopen_req)) in tcp_sendmsg_fastopen()
1057 tp->fastopen_req->data = msg; in tcp_sendmsg_fastopen()
1058 tp->fastopen_req->size = size; in tcp_sendmsg_fastopen()
1063 *copied = tp->fastopen_req->copied; in tcp_sendmsg_fastopen()
Daf_inet.c613 tcp_sk(sk)->fastopen_req && in __inet_stream_connect()
614 tcp_sk(sk)->fastopen_req->data ? 1 : 0; in __inet_stream_connect()
Dtcp_output.c553 struct tcp_fastopen_request *fastopen = tp->fastopen_req; in tcp_syn_options()
3145 struct tcp_fastopen_request *fo = tp->fastopen_req; in tcp_send_syn_data()
3256 err = tp->fastopen_req ? tcp_send_syn_data(sk, buff) : in tcp_connect()
/linux-4.1.27/include/linux/
Dtcp.h326 struct tcp_fastopen_request *fastopen_req; member