proto-shell: add a library function for sending protocol handler updates
[project/netifd.git] / dummy / proto / ppp.sh
index 8e8ceb2..adce2ca 100755 (executable)
@@ -1,6 +1,7 @@
 #!/bin/sh
 
-. netifd-proto.sh
+. ../netifd-proto.sh
+init_proto "$@"
 
 ppp_init_config() {
        proto_config_add_string "username"
@@ -32,7 +33,12 @@ pppoe_init() {
 }
 
 pppoe_setup() {
-       echo "pppoe_setup($1, $3): $2"
+       json_get_var username username
+       json_get_var password password
+       echo "pppoe_setup($1, $2), username=$username, password=$password"
+       proto_init_update ppp0 1
+       proto_add_ipv4_address "192.168.2.1" 32
+       proto_send_update "$1"
 }
 
 pppoe_teardown() {