blob: 0715fbe08e78c84058019a1d68ec7b82587828ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
enum ipcp_msg_code {
IPCP_BOOTSTRAP = 1;
IPCP_ENROLL = 2;
IPCP_REG = 3;
IPCP_UNREG = 4;
};
message ipcp_msg {
required ipcp_msg_code code = 1;
optional string ap_name = 2;
// Missing dif_config field here
repeated string dif_name = 4;
repeated string n_1_dif_name = 5;
};
|