Skip to content
Snippets Groups Projects
Commit 960d14d7 authored by Michael Tüxen's avatar Michael Tüxen
Browse files

Linux 3.18 doesn't support TUN_F_UFO, earlier and later versions do.

parent 00594d21
No related branches found
No related tags found
No related merge requests found
......@@ -44,6 +44,9 @@
#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__)
#include <net/if_tun.h>
#endif /* defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) */
#if defined(linux)
#include <linux/version.h>
#endif
#include "ip.h"
#include "ipv6.h"
......@@ -201,8 +204,11 @@ static void create_device(struct config *config, struct local_netdev *netdev)
static void set_device_offload_flags(struct local_netdev *netdev)
{
#ifdef linux
const u32 offload =
TUN_F_CSUM | TUN_F_TSO4 | TUN_F_TSO6 | TUN_F_TSO_ECN | TUN_F_UFO;
u32 offload = TUN_F_CSUM | TUN_F_TSO4 | TUN_F_TSO6 | TUN_F_TSO_ECN;
#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,18,0)) || (LINUX_VERSION_CODE >= KERNEL_VERSION(3,19,0))
offload |= TUN_F_UFO;
#endif
if (ioctl(netdev->tun_fd, TUNSETOFFLOAD, offload) != 0)
die_perror("TUNSETOFFLOAD");
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment