Codebase list ladvd / 57a5535
Update netif_linux.c Sten Spans authored 6 years ago GitHub committed 6 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
122122 } else if (strcmp(dname, "802.1Q VLAN Support") == 0) {
123123 return(NETIF_VLAN);
124124 // handle tun/tap
125 } else if (strcmp(dname, "tun") == 0) {
125 } else if (strcmp(dname, "tun") == 0 || strcmp(dname, "veth") == 0) {
126126 return(NETIF_TAP);
127127 }
128128