blob: 4e88ddb52a2cf2d324930b736b4274874db21868 [file] [log] [blame]
Vlad Yasevichd1da9322012-11-15 08:49:16 +00001/*
2 * IPV6 GSO/GRO offload support
3 * Linux INET6 implementation
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version
8 * 2 of the License, or (at your option) any later version.
9 */
10
11#ifndef __ip6_offload_h
12#define __ip6_offload_h
13
Vlad Yasevich2207afc2012-11-15 08:49:19 +000014int ipv6_exthdrs_offload_init(void);
15void ipv6_exthdrs_offload_exit(void);
16
Vlad Yasevich5edbb072012-11-15 08:49:18 +000017int udp_offload_init(void);
18void udp_offload_cleanup(void);
19
Vlad Yasevich8663e022012-11-15 08:49:17 +000020int tcpv6_offload_init(void);
21void tcpv6_offload_cleanup(void);
22
Vlad Yasevichd1da9322012-11-15 08:49:16 +000023extern void ipv6_offload_init(void);
24extern void ipv6_offload_cleanup(void);
25
26#endif