summaryrefslogtreecommitdiffstats
path: root/package/netifd/files
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-10-27 20:28:42 +0000
committerFelix Fietkau <nbd@openwrt.org>2011-10-27 20:28:42 +0000
commitbebd9aec71daebe1b11216f39d1f820fcd78af1e (patch)
tree4a86c57a9ab41ba5b5885d6ac27ff65c247635d5 /package/netifd/files
parent24bf5c41a0c7139d765e205f3c827e4f6a2dff11 (diff)
downloadmaster-31e0f0ae-bebd9aec71daebe1b11216f39d1f820fcd78af1e.tar.gz
master-31e0f0ae-bebd9aec71daebe1b11216f39d1f820fcd78af1e.tar.bz2
master-31e0f0ae-bebd9aec71daebe1b11216f39d1f820fcd78af1e.zip
netifd: update, prefix proto handler callbacks with 'proto_'
SVN-Revision: 28632
Diffstat (limited to 'package/netifd/files')
-rwxr-xr-xpackage/netifd/files/lib/netifd/proto/ppp.sh18
1 files changed, 9 insertions, 9 deletions
diff --git a/package/netifd/files/lib/netifd/proto/ppp.sh b/package/netifd/files/lib/netifd/proto/ppp.sh
index 7cff2a98e7..5f549bf6e1 100755
--- a/package/netifd/files/lib/netifd/proto/ppp.sh
+++ b/package/netifd/files/lib/netifd/proto/ppp.sh
@@ -90,31 +90,31 @@ ppp_generic_teardown() {
# PPP on serial device
-ppp_init_config() {
+proto_ppp_init_config() {
proto_config_add_string "device"
ppp_generic_init_config
no_device=1
available=1
}
-ppp_setup() {
+proto_ppp_setup() {
local config="$1"
json_get_var device device
ppp_generic_setup "$config" "$device"
}
-ppp_teardown() {
+proto_ppp_teardown() {
ppp_generic_teardown "$@"
}
-pppoe_init_config() {
+proto_pppoe_init_config() {
ppp_generic_init_config
proto_config_add_string "ac"
proto_config_add_string "service"
}
-pppoe_setup() {
+proto_pppoe_setup() {
local config="$1"
local iface="$2"
@@ -135,11 +135,11 @@ pppoe_setup() {
"nic-$iface"
}
-pppoe_teardown() {
+proto_pppoe_teardown() {
ppp_generic_teardown "$@"
}
-pppoa_init_config() {
+proto_pppoa_init_config() {
ppp_generic_init_config
proto_config_add_int "atmdev"
proto_config_add_int "vci"
@@ -147,7 +147,7 @@ pppoa_init_config() {
proto_config_add_string "encaps"
}
-pppoa_setup() {
+proto_pppoa_setup() {
local config="$1"
local iface="$2"
@@ -171,7 +171,7 @@ pppoa_setup() {
${encaps}
}
-pppoa_teardown() {
+proto_pppoa_teardown() {
ppp_generic_teardown "$@"
}