Matteo Scandolo | 48d3d2d | 2017-08-08 13:05:27 -0700 | [diff] [blame] | 1 | |
| 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 Gaonker | cd974cd | 2016-03-04 14:56:58 -0800 | [diff] [blame] | 17 | States: |
| 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_MD5_CHALLENGE |
| 36 | ST_EAP_MD5_CHALLENGE: |
| 37 | Events: |
| 38 | EVT_EAP_MD5_CHALLENGE: |
| 39 | Actions: |
| 40 | - _eapMd5Challenge |
| 41 | NextState: ST_EAP_STATUS |
| 42 | ST_EAP_STATUS: |
| 43 | Events: |
| 44 | EVT_EAP_STATUS: |
| 45 | Actions: |
| 46 | - _eapStatus |
| 47 | NextState: ST_EAP_MD5_DONE |
| 48 | |