diff options
author | Vinay Kumar Yadav <vinay.yadav@chelsio.com> | 2020-06-02 00:07:05 +0530 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-06-01 15:51:25 -0700 |
commit | 6abde0b241224347cd88e2ae75902e07f55c42cb (patch) | |
tree | 866f538b2072c57a4b3f951b8f43a8562304c9e2 /net/ipv6 | |
parent | a56772dc3f17f8137aa3227f898e482af2d3bffc (diff) | |
download | linux-next-6abde0b241224347cd88e2ae75902e07f55c42cb.tar.gz |
crypto/chtls: IPv6 support for inline TLS
Extends support to IPv6 for Inline TLS server.
Signed-off-by: Vinay Kumar Yadav <vinay.yadav@chelsio.com>
v1->v2:
- cc'd tcp folks.
v2->v3:
- changed EXPORT_SYMBOL() to EXPORT_SYMBOL_GPL()
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/tcp_ipv6.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c index b7415ca75c2d..f67d45ff00b4 100644 --- a/net/ipv6/tcp_ipv6.c +++ b/net/ipv6/tcp_ipv6.c @@ -2121,6 +2121,7 @@ struct proto tcpv6_prot = { #endif .diag_destroy = tcp_abort, }; +EXPORT_SYMBOL_GPL(tcpv6_prot); /* thinking of making this const? Don't. * early_demux can change based on sysctl. |