summaryrefslogtreecommitdiffhomepage
path: root/proto/ppp.sh
blob: 8dd97c00f515bbfcbb7d2d84751679e6d15d6f2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/sh

. netifd-proto.sh

ppp_init_config() {
	proto_config_add_string "username"
	proto_config_add_string "password"
	proto_config_add_int "keepalive"
}

ppp_setup() {
	return
}

ppp_teardown() {
	return
}

ppp_init() {
	return
}

add_protocol ppp

pppoe_init_config() {
	ppp_init_config
}

pppoe_init() {
	return
}

add_protocol pppoe