X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fmingw%2Fdevice.c;h=a765ce3bbf2434288526fd9a33371f4890fb83fc;hb=0c026f3c6dec784c3267ad7e2c4709d5393dc292;hp=9744196a3cd93c65d2138b34deada4d540af6861;hpb=41583d5dcfc1277b1a203478de4cce2cd0cda1b1;p=tinc diff --git a/src/mingw/device.c b/src/mingw/device.c index 9744196a..a765ce3b 100644 --- a/src/mingw/device.c +++ b/src/mingw/device.c @@ -40,6 +40,9 @@ char *device = NULL; char *iface = NULL; static char *device_info = NULL; +static uint64_t device_total_in = 0; +static uint64_t device_total_out = 0; + extern char *myport; static DWORD WINAPI tapreader(void *bla) { @@ -91,7 +94,6 @@ static bool setup_device(void) { char adaptername[1024]; char tapname[1024]; DWORD len; - unsigned long status; bool found = false; @@ -197,11 +199,6 @@ static bool setup_device(void) { return false; } - /* Set media status for newer TAP-Win32 devices */ - - status = true; - DeviceIoControl(device_handle, TAP_IOCTL_SET_MEDIA_STATUS, &status, sizeof status, &status, sizeof status, &len, NULL); - device_info = "Windows tap device"; logger(DEBUG_ALWAYS, LOG_INFO, "%s (%s) is a %s", device, iface, device_info); @@ -209,11 +206,26 @@ static bool setup_device(void) { return true; } +static void enable_device(void) { + logger(DEBUG_ALWAYS, LOG_INFO, "Enabling %s", device_info); + ULONG status = 1; + DWORD len; + DeviceIoControl(device_handle, TAP_IOCTL_SET_MEDIA_STATUS, &status, sizeof status, &status, sizeof status, &len, NULL); +} + +static void disable_device(void) { + logger(DEBUG_ALWAYS, LOG_INFO, "Disabling %s", device_info); + ULONG status = 0; + DWORD len; + DeviceIoControl(device_handle, TAP_IOCTL_SET_MEDIA_STATUS, &status, sizeof status, &status, sizeof status, &len, NULL); +} + static void close_device(void) { - CloseHandle(device_handle); + CloseHandle(device_handle); device_handle = INVALID_HANDLE_VALUE; - free(device); - free(iface); + free(device); device = NULL; + free(iface); iface = NULL; + device_info = NULL; } static bool read_packet(vpn_packet_t *packet) { @@ -232,6 +244,8 @@ static bool write_packet(vpn_packet_t *packet) { return false; } + device_total_out += packet->len; + return true; } @@ -240,4 +254,6 @@ const devops_t os_devops = { .close = close_device, .read = read_packet, .write = write_packet, + .enable = enable_device, + .disable = disable_device, };