blob: 1a917bea93c591970927d38a72cdcf03c7e05c3a [file] [log] [blame]
Matteo Scandolo48d3d2d2017-08-08 13:05:27 -07001
2# Copyright 2017-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16
Chetan Gaonkere2b78722016-02-22 17:27:09 -080017States:
18 ST_EAP_SETUP:
19 Events:
20 EVT_EAP_SETUP:
21 Actions:
22 - _eapSetup
23 NextState: ST_EAP_START
24 ST_EAP_START:
25 Events:
26 EVT_EAP_START:
27 Actions:
28 - _eapStart
29 NextState: ST_EAP_ID_REQ
30 ST_EAP_ID_REQ:
31 Events:
32 EVT_EAP_ID_REQ:
33 Actions:
34 - _eapIdReq
35 NextState: ST_EAP_PAP_USER_REQ
36 ST_EAP_PAP_USER_REQ:
37 Events:
38 EVT_EAP_PAP_USER_REQ:
39 Actions:
40 - _eapPAPUserReq
41 NextState: ST_EAP_PAP_PASSWD_REQ
42 ST_EAP_PAP_PASSWD_REQ:
43 Events:
44 EVT_EAP_PAP_PASSWD_REQ:
45 Actions:
46 - _eapPAPPassReq
47 NextState: ST_EAP_PAP_DONE
48