Skip to content
Snippets Groups Projects
Select Git revision
  • d96938daae2a2ae20e5d3d38ddb85d8afdaee628
  • vme-testing default
  • ci-test
  • master
  • remoteproc
  • am625-sk-ov5640
  • pcal6534-upstreaming
  • lps22df-upstreaming
  • msc-upstreaming
  • imx8mp
  • iio/noa1305
  • vme-next
  • vme-next-4.14-rc4
  • v4.14-rc4
  • v4.14-rc3
  • v4.14-rc2
  • v4.14-rc1
  • v4.13
  • vme-next-4.13-rc7
  • v4.13-rc7
  • v4.13-rc6
  • v4.13-rc5
  • v4.13-rc4
  • v4.13-rc3
  • v4.13-rc2
  • v4.13-rc1
  • v4.12
  • v4.12-rc7
  • v4.12-rc6
  • v4.12-rc5
  • v4.12-rc4
  • v4.12-rc3
32 results

core.c

Blame
  • tcp_ipv6.c 51.37 KiB
    /*
     *	TCP over IPv6
     *	Linux INET6 implementation
     *
     *	Authors:
     *	Pedro Roque		<roque@di.fc.ul.pt>
     *
     *	Based on:
     *	linux/net/ipv4/tcp.c
     *	linux/net/ipv4/tcp_input.c
     *	linux/net/ipv4/tcp_output.c
     *
     *	Fixes:
     *	Hideaki YOSHIFUJI	:	sin6_scope_id support
     *	YOSHIFUJI Hideaki @USAGI and:	Support IPV6_V6ONLY socket option, which
     *	Alexey Kuznetsov		allow both IPv4 and IPv6 sockets to bind
     *					a single port at the same time.
     *	YOSHIFUJI Hideaki @USAGI:	convert /proc/net/tcp6 to seq_file.
     *
     *	This program is free software; you can redistribute it and/or
     *      modify it under the terms of the GNU General Public License
     *      as published by the Free Software Foundation; either version
     *      2 of the License, or (at your option) any later version.
     */
    
    #include <linux/bottom_half.h>
    #include <linux/module.h>
    #include <linux/errno.h>
    #include <linux/types.h>
    #include <linux/socket.h>
    #include <linux/sockios.h>
    #include <linux/net.h>
    #include <linux/jiffies.h>
    #include <linux/in.h>
    #include <linux/in6.h>
    #include <linux/netdevice.h>
    #include <linux/init.h>
    #include <linux/jhash.h>
    #include <linux/ipsec.h>
    #include <linux/times.h>
    #include <linux/slab.h>
    #include <linux/uaccess.h>
    #include <linux/ipv6.h>
    #include <linux/icmpv6.h>
    #include <linux/random.h>
    
    #include <net/tcp.h>
    #include <net/ndisc.h>
    #include <net/inet6_hashtables.h>
    #include <net/inet6_connection_sock.h>
    #include <net/ipv6.h>
    #include <net/transp_v6.h>
    #include <net/addrconf.h>
    #include <net/ip6_route.h>
    #include <net/ip6_checksum.h>
    #include <net/inet_ecn.h>
    #include <net/protocol.h>
    #include <net/xfrm.h>
    #include <net/snmp.h>
    #include <net/dsfield.h>
    #include <net/timewait_sock.h>
    #include <net/inet_common.h>
    #include <net/secure_seq.h>
    #include <net/busy_poll.h>
    
    #include <linux/proc_fs.h>
    #include <linux/seq_file.h>
    
    #include <crypto/hash.h>
    #include <linux/scatterlist.h>