Fix adapter name length in windows

This commit is contained in:
emanuele-f 2019-06-30 19:10:51 +02:00
parent 69e1d50ca3
commit 6d38d4bfb4
2 changed files with 5 additions and 4 deletions

6
n2n.h
View File

@ -126,8 +126,12 @@ typedef struct ether_hdr ether_hdr_t;
#include "n2n_wire.h"
#include "n2n_transforms.h"
/* N2N_IFNAMSIZ is needed on win32 even if dev_name is not used after declaration */
#ifdef WIN32
#define N2N_IFNAMSIZ 64
#else
#define N2N_IFNAMSIZ 16 /* 15 chars * NULL */
#endif
#ifndef WIN32
typedef struct tuntap_dev {
int fd;

View File

@ -5,9 +5,6 @@
#include "../n2n.h"
#include "n2n_win32.h"
/* 1500 bytes payload + 14 bytes ethernet header + 4 bytes VLAN tag */
#define MTU 1518
void initWin32() {
WSADATA wsaData;
int err;