remove configuration option 'mtu'
This isn't useful because anyone wanting to set the IPv6 MTU
can simply set that by setting the IPv6 MTU on the interface.
Test: builds
Bug: 144730808
Signed-off-by: Maciej Żenczykowski <maze@google.com>
Change-Id: Id140dc9865d33b66b120b932cb16e4d4fa70fc47
diff --git a/config.c b/config.c
index e820ba0..a859092 100644
--- a/config.c
+++ b/config.c
@@ -328,7 +328,7 @@
Global_Clatd_Config.default_pdp_interface = strdup(uplink_interface);
if (!Global_Clatd_Config.default_pdp_interface) goto failed;
- if (!config_item_int16_t(root, "mtu", "-1", &Global_Clatd_Config.mtu)) goto failed;
+ Global_Clatd_Config.mtu = -1;
Global_Clatd_Config.ipv4mtu = -1;