Linux Audio

Check our new training course

Real-Time Linux with PREEMPT_RT training

Feb 18-20, 2025
Register
Loading...
v3.15
 
 1/*
 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
14int ipv6_exthdrs_offload_init(void);
15int udp_offload_init(void);
 
16int tcpv6_offload_init(void);
17
18#endif
v5.14.15
 1/* SPDX-License-Identifier: GPL-2.0-or-later */
 2/*
 3 *	IPV6 GSO/GRO offload support
 4 *	Linux INET6 implementation
 
 
 
 
 
 5 */
 6
 7#ifndef __ip6_offload_h
 8#define __ip6_offload_h
 9
10int ipv6_exthdrs_offload_init(void);
11int udpv6_offload_init(void);
12int udpv6_offload_exit(void);
13int tcpv6_offload_init(void);
14
15#endif