diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-10-27 11:01:32 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-10-27 11:01:32 +0200 |
commit | 3c1a5bf324c8f2476239c4e49687ca252d3bf4c8 (patch) | |
tree | 4bb2bb1e1631344898fed229b9ee0c3615343895 /dummy/proto/ppp.sh | |
parent | 4ff6bcbee05983037f6a629b114beace5d98bdbe (diff) |
fold the _init callback into _init_config
Diffstat (limited to 'dummy/proto/ppp.sh')
-rwxr-xr-x | dummy/proto/ppp.sh | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/dummy/proto/ppp.sh b/dummy/proto/ppp.sh index 6f5dfcc..fc918a5 100755 --- a/dummy/proto/ppp.sh +++ b/dummy/proto/ppp.sh @@ -3,12 +3,18 @@ . ../netifd-proto.sh init_proto "$@" -ppp_init_config() { +ppp_generic_init_config() { proto_config_add_string "username" proto_config_add_string "password" proto_config_add_int "keepalive" } +ppp_init_config() { + no_device=1 + available=1 + ppp_generic_init_config +} + ppp_setup() { echo "ppp_setup($1): $2" } @@ -17,19 +23,10 @@ ppp_teardown() { return } -ppp_init() { - no_device=1 - available=1 -} - add_protocol ppp pppoe_init_config() { - ppp_init_config -} - -pppoe_init() { - return + ppp_generic_init_config } pppoe_setup() { |