Lines Matching defs:child
244 struct sock *child;
247 child = inet_csk(sk)->icsk_af_ops->syn_recv_sock(sk, skb, req, NULL,
249 if (!child)
256 /* Initialize the child socket. Have to fix some values to take
257 * into account the child is a Fast Open socket and is created
260 tp = tcp_sk(child);
275 req->timeout = tcp_timeout_init(child);
276 inet_csk_reset_xmit_timer(child, ICSK_TIME_RETRANS,
281 /* Now finish processing the fastopen child socket. */
282 tcp_init_transfer(child, BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB, skb);
286 tcp_fastopen_add_skb(child, skb);
291 * and queues the child into listener accept queue.
293 return child;
355 struct sock *child;
381 /* Cookie is valid. Create a (full) child socket to
391 child = tcp_fastopen_create_child(sk, skb, req);
392 if (child) {
403 return child;