Remove multiqueue (not used with mud)

This commit is contained in:
Adrien Gallouët
2016-10-05 09:49:14 +00:00
parent d4e70feddc
commit c9f737197c
3 changed files with 12 additions and 24 deletions

View File

@@ -266,7 +266,6 @@ int main (int argc, char **argv)
{ "dev", &dev, option_str },
{ "mtu", &mtu, option_long },
{ "keyfile", &keyfile, option_str },
{ "multiqueue", NULL, option_option },
{ "statefile", &statefile, option_str },
{ "timeout", &gt.timeout, option_long },
{ "time-tolerance", &time_tolerance, option_long },
@@ -318,7 +317,7 @@ int main (int argc, char **argv)
char *tun_name = NULL;
int tun_fd = tun_create(dev, &tun_name, option_is_set(opts, "multiqueue"));
int tun_fd = tun_create(dev, &tun_name);
if (tun_fd==-1) {
gt_log("couldn't create tun device\n");

View File

@@ -28,7 +28,7 @@
#ifdef __APPLE__
static int tun_create_by_id (char *name, size_t size, unsigned id, _unused_ int mq)
static int tun_create_by_id (char *name, size_t size, unsigned id)
{
int fd = socket(PF_SYSTEM, SOCK_DGRAM, SYSPROTO_CONTROL);
@@ -63,21 +63,21 @@ static int tun_create_by_id (char *name, size_t size, unsigned id, _unused_ int
return fd;
}
static int tun_create_by_name (char *name, size_t size, char *dev_name, int mq)
static int tun_create_by_name (char *name, size_t size, char *dev_name)
{
unsigned id = 0;
if (sscanf(dev_name, "utun%u", &id)!=1)
return -1;
return tun_create_by_id(name, size, id, mq);
return tun_create_by_id(name, size, id);
}
#else /* not __APPLE__ */
#ifdef __linux__
static int tun_create_by_name (char *name, size_t size, char *dev_name, int mq)
static int tun_create_by_name (char *name, size_t size, char *dev_name)
{
int fd = open("/dev/net/tun", O_RDWR);
@@ -88,12 +88,6 @@ static int tun_create_by_name (char *name, size_t size, char *dev_name, int mq)
.ifr_flags = IFF_TUN|IFF_NO_PI,
};
if (mq) {
#ifdef IFF_MULTI_QUEUE
ifr.ifr_flags |= IFF_MULTI_QUEUE;
#endif
}
str_cpy(ifr.ifr_name, dev_name, IFNAMSIZ-1);
if (ioctl(fd, TUNSETIFF, &ifr)) {
@@ -108,7 +102,7 @@ static int tun_create_by_name (char *name, size_t size, char *dev_name, int mq)
#else /* not __linux__ not __APPLE__ */
static int tun_create_by_name (char *name, size_t size, char *dev_name, _unused_ int mq)
static int tun_create_by_name (char *name, size_t size, char *dev_name)
{
char path[64];
@@ -120,32 +114,27 @@ static int tun_create_by_name (char *name, size_t size, char *dev_name, _unused_
#endif /* not __APPLE__ */
static int tun_create_by_id (char *name, size_t size, unsigned id, int mq)
static int tun_create_by_id (char *name, size_t size, unsigned id)
{
char dev_name[64];
snprintf(dev_name, sizeof(dev_name), "tun%u", id);
return tun_create_by_name(name, size, dev_name, mq);
return tun_create_by_name(name, size, dev_name);
}
#endif
int tun_create (char *dev_name, char **ret_name, int mq)
int tun_create (char *dev_name, char **ret_name)
{
char name[64] = {0};
int fd = -1;
#ifndef IFF_MULTI_QUEUE
if (mq)
gt_na("IFF_MULTI_QUEUE");
#endif
if (str_empty(dev_name)) {
for (unsigned id=0; id<32 && fd==-1; id++)
fd = tun_create_by_id(name, sizeof(name), id, mq);
fd = tun_create_by_id(name, sizeof(name), id);
} else {
fd = tun_create_by_name(name, sizeof(name), dev_name, mq);
fd = tun_create_by_name(name, sizeof(name), dev_name);
}
if (fd!=-1 && ret_name)

View File

@@ -2,7 +2,7 @@
#include <unistd.h>
int tun_create (char *, char **, int);
int tun_create (char *, char **);
ssize_t tun_read (int, void *, size_t);
ssize_t tun_write (int, const void *, size_t);
int tun_set_mtu (char *, int);