ipv4.c (6f4e5fff1e4d46714ea554fd83e44eab534e8b11) ipv4.c (afb0a34dd3e20b3f534de19993271b8664cf10bb)
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

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

646 dccp_reqsk_init(req, skb);
647
648 if (security_inet_conn_request(sk, skb, req))
649 goto drop_and_free;
650
651 ireq = inet_rsk(req);
652 ireq->loc_addr = skb->nh.iph->daddr;
653 ireq->rmt_addr = skb->nh.iph->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

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

646 dccp_reqsk_init(req, skb);
647
648 if (security_inet_conn_request(sk, skb, req))
649 goto drop_and_free;
650
651 ireq = inet_rsk(req);
652 ireq->loc_addr = skb->nh.iph->daddr;
653 ireq->rmt_addr = skb->nh.iph->saddr;
654 req->rcv_wnd = dccp_feat_default_sequence_window;
655 ireq->opt = NULL;
656
657 /*
658 * Step 3: Process LISTEN state
659 *
660 * Set S.ISR, S.GSR, S.SWL, S.SWH from packet or Init Cookie
661 *
662 * In fact we defer setting S.GSR, S.SWL, S.SWH to

--- 429 unchanged lines hidden ---
654 ireq->opt = NULL;
655
656 /*
657 * Step 3: Process LISTEN state
658 *
659 * Set S.ISR, S.GSR, S.SWL, S.SWH from packet or Init Cookie
660 *
661 * In fact we defer setting S.GSR, S.SWL, S.SWH to

--- 429 unchanged lines hidden ---