ipv4.c (4ba24fef3eb3b142197135223b90ced2f319cd53) ipv4.c (33cf7c90fe2f97afb1cadaa0cfb782cb9d1b9ee2)
1/*
2 * net/dccp/ipv4.c
3 *
4 * An implementation of the DCCP protocol
5 * Arnaldo Carvalho de Melo <acme@conectiva.com.br>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License

--- 627 unchanged lines hidden (view full) ---

636 goto drop_and_free;
637
638 if (security_inet_conn_request(sk, skb, req))
639 goto drop_and_free;
640
641 ireq = inet_rsk(req);
642 ireq->ir_loc_addr = ip_hdr(skb)->daddr;
643 ireq->ir_rmt_addr = ip_hdr(skb)->saddr;
1/*
2 * net/dccp/ipv4.c
3 *
4 * An implementation of the DCCP protocol
5 * Arnaldo Carvalho de Melo <acme@conectiva.com.br>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License

--- 627 unchanged lines hidden (view full) ---

636 goto drop_and_free;
637
638 if (security_inet_conn_request(sk, skb, req))
639 goto drop_and_free;
640
641 ireq = inet_rsk(req);
642 ireq->ir_loc_addr = ip_hdr(skb)->daddr;
643 ireq->ir_rmt_addr = ip_hdr(skb)->saddr;
644 ireq->ireq_net = sock_net(sk);
645 atomic64_set(&ireq->ir_cookie, 0);
644
645 /*
646 * Step 3: Process LISTEN state
647 *
648 * Set S.ISR, S.GSR, S.SWL, S.SWH from packet or Init Cookie
649 *
650 * Setting S.SWL/S.SWH to is deferred to dccp_create_openreq_child().
651 */

--- 438 unchanged lines hidden ---
646
647 /*
648 * Step 3: Process LISTEN state
649 *
650 * Set S.ISR, S.GSR, S.SWL, S.SWH from packet or Init Cookie
651 *
652 * Setting S.SWL/S.SWH to is deferred to dccp_create_openreq_child().
653 */

--- 438 unchanged lines hidden ---