blob: 464e15750aae643125bb434e740449dfef8c72d9 [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
A R Karthicka2e53d62016-02-19 17:38:30 -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_TLS_HELLO_REQ
36 ST_EAP_TLS_HELLO_REQ:
37 Events:
38 EVT_EAP_TLS_HELLO_REQ:
39 Actions:
40 - _eapTlsHelloReq
41 NextState: ST_EAP_TLS_CERT_REQ
42 ST_EAP_TLS_CERT_REQ:
43 Events:
44 EVT_EAP_TLS_CERT_REQ:
45 Actions:
46 - _eapTlsCertReq
Chetan Gaonkerf8f77182016-03-11 15:34:57 -080047 NextState: ST_EAP_TLS_CHANGE_CIPHER_SPEC
48 ST_EAP_TLS_CHANGE_CIPHER_SPEC:
49 Events:
50 EVT_EAP_TLS_CHANGE_CIPHER_SPEC:
51 Actions:
52 - _eapTlsChangeCipherSpec
53 NextState: ST_EAP_TLS_FINISHED
54 ST_EAP_TLS_FINISHED:
55 Events:
56 EVT_EAP_TLS_FINISHED:
57 Actions:
58 - _eapTlsFinished
A R Karthicka2e53d62016-02-19 17:38:30 -080059 NextState: ST_EAP_TLS_DONE
60