diff options
author | Vladislav Grishenko <themiron@mail.ru> | 2017-12-31 00:57:33 +0500 |
---|---|---|
committer | Vladislav Grishenko <themiron@mail.ru> | 2018-01-05 18:25:53 +0500 |
commit | c9d32e8baefb2784a8ab7e1052df704273135ff6 (patch) | |
tree | 731199305ff5c29f64347bf8c456fe35aa7e231e /accel-pppd/ctrl/sstp/sstp.c | |
parent | 1f473ffa8df20b929d885d41392a25fe57ded5c2 (diff) | |
download | accel-ppp-c9d32e8baefb2784a8ab7e1052df704273135ff6.tar.gz accel-ppp-c9d32e8baefb2784a8ab7e1052df704273135ff6.zip |
sstp: fix default max mtu to fit standard 1500 media
Diffstat (limited to 'accel-pppd/ctrl/sstp/sstp.c')
-rw-r--r-- | accel-pppd/ctrl/sstp/sstp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accel-pppd/ctrl/sstp/sstp.c b/accel-pppd/ctrl/sstp/sstp.c index ef782e29..763c90fe 100644 --- a/accel-pppd/ctrl/sstp/sstp.c +++ b/accel-pppd/ctrl/sstp/sstp.c @@ -160,7 +160,7 @@ static struct sstp_serv_t { static int conf_timeout = SSTP_NEGOTIOATION_TIMEOUT; static int conf_hello_interval = SSTP_HELLO_TIMEOUT; static int conf_verbose = 0; -static int conf_ppp_max_mtu = 1456; +static int conf_ppp_max_mtu = 1452; static const char *conf_ip_pool; static const char *conf_ifname; |