[package] base-files: Add function pi_include the /lib/functions/boot.sh used by...
[openwrt.git] / package / pptp / files / pptp.sh
index b5a5c06d0751cb8d8e9c07a6e4218f31b222d155..436bee3c8763dd79c474cede47ef14181365feb8 100644 (file)
@@ -2,6 +2,10 @@ find_gw() {
        route -n | awk '$1 == "0.0.0.0" { print $2; exit }'
 }
 
+scan_pptp() {
+       config_set "$1" device "pptp-$1"
+}
+
 stop_interface_pptp() {
        stop_interface_ppp "$1"
 }
@@ -14,10 +18,19 @@ setup_interface_pptp() {
        local config="$2"
        local ifname
 
+       local device
        config_get device "$config" device
+
+       local ipproto
        config_get ipproto "$config" ipproto
+
+       local server
        config_get server "$config" server
 
+       local buffering
+       config_get_bool buffering "$config" buffering 1
+       [ "$buffering" == 0 ] && buffering="--nobuffer" || buffering=
+
        for module in slhc ppp_generic ppp_async ip_gre; do
                /sbin/insmod $module 2>&- >&-
        done
@@ -37,7 +50,7 @@ setup_interface_pptp() {
        config_get mtu "$config" mtu
        mtu=${mtu:-1452}
        start_pppd "$config" \
-               pty "/usr/sbin/pptp $server --loglevel 0 --nolaunchpppd" \
+               pty "/usr/sbin/pptp $server --loglevel 0 --nolaunchpppd $buffering" \
                file /etc/ppp/options.pptp \
                mtu $mtu mru $mtu
 }