mirror of
https://github.com/yarrick/iodine.git
synced 2025-12-06 20:31:45 +00:00
give error when no TAP adapters found, and clean better
This commit is contained in:
@@ -264,8 +264,10 @@ open_tun(const char *tun_device)
|
||||
memset(adapter, 0, sizeof(adapter));
|
||||
get_device(adapter, sizeof(adapter));
|
||||
|
||||
if (strlen(adapter) == 0)
|
||||
if (strlen(adapter) == 0) {
|
||||
warnx("No TAP adapters found. See README-win32.txt for help.\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
snprintf(tapfile, sizeof(tapfile), "%s%s.tap", TAP_DEVICE_SPACE, adapter);
|
||||
printf("Opening device %s\n", tapfile);
|
||||
|
||||
Reference in New Issue
Block a user