Skip to content
Snippets Groups Projects
Commit 8311fa0b authored by Michael Tüxen's avatar Michael Tüxen
Browse files

Allow the interface MTU to be set to the default value.

If the interface MTU was previously set to a non-default value
and in a later run should be set to the default value, it was
not set correctly. With this patch, the MTU is always set.
parent 475de68c
No related branches found
No related tags found
No related merge requests found
...@@ -111,6 +111,8 @@ static void check_remote_address(struct config *config, ...@@ -111,6 +111,8 @@ static void check_remote_address(struct config *config,
/* Create a tun device for the lifetime of this test. */ /* Create a tun device for the lifetime of this test. */
static void create_device(struct config *config, struct local_netdev *netdev) static void create_device(struct config *config, struct local_netdev *netdev)
{ {
char *command;
/* Open the tun device, which "clones" it for our purposes. */ /* Open the tun device, which "clones" it for our purposes. */
int tun_fd = open(TUN_PATH, O_RDWR); int tun_fd = open(TUN_PATH, O_RDWR);
if (tun_fd < 0) if (tun_fd < 0)
...@@ -177,14 +179,10 @@ static void create_device(struct config *config, struct local_netdev *netdev) ...@@ -177,14 +179,10 @@ static void create_device(struct config *config, struct local_netdev *netdev)
free(command); free(command);
} }
if (config->mtu != TUN_DRIVER_DEFAULT_MTU) { asprintf(&command, "ifconfig %s mtu %d", netdev->name, config->mtu);
char *command; if (system(command) < 0)
asprintf(&command, "ifconfig %s mtu %d", die("Error executing %s\n", command);
netdev->name, config->mtu); free(command);
if (system(command) < 0)
die("Error executing %s\n", command);
free(command);
}
/* Open a socket we can use to configure the tun interface. /* Open a socket we can use to configure the tun interface.
* We only open up an AF_INET6 socket on-demand as needed, * We only open up an AF_INET6 socket on-demand as needed,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment