summaryrefslogtreecommitdiffstats
path: root/src/config.y
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2015-01-21 05:47:52 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2015-01-21 05:47:52 +0100
commitceb66fb221184eb8f0136ac141ff6c2c8d3245fa (patch)
tree03f616b4ae3099092b2f5a9d22c28c2b1ef87d22 /src/config.y
parenteece4529cbc27eb8266cd9f47cf84c0d0a6b742a (diff)
downloadfastd-ceb66fb221184eb8f0136ac141ff6c2c8d3245fa.tar
fastd-ceb66fb221184eb8f0136ac141ff6c2c8d3245fa.zip
Always disable PMTU discovery
fastd currently can't fragment packets anyways, so it doesn't make any sense to perform PMTU discovery. This makes the config option `pmtu' a no-op.
Diffstat (limited to 'src/config.y')
-rw-r--r--src/config.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.y b/src/config.y
index 404ac1d..af93864 100644
--- a/src/config.y
+++ b/src/config.y
@@ -369,7 +369,7 @@ mtu: TOK_UINT {
}
;
-pmtu: autobool { conf.pmtu = $1; }
+pmtu: autobool
;
mode: TOK_TAP { conf.mode = MODE_TAP; }