blob: a060ac8c6ec3a6de6084c85a22dfabfa3e742353 [file] [log] [blame]
A R Karthicka2e53d62016-02-19 17:38:30 -08001#!python
2
3def initTlsAuthHolderFsmTable(obj,St,Ev):
4 return {
5
6 ## CurrentState Event Actions NextState
7
8 (St.ST_EAP_SETUP, Ev.EVT_EAP_SETUP ):( (obj._eapSetup,), St.ST_EAP_START),
9
10 ## CurrentState Event Actions NextState
11
12 (St.ST_EAP_TLS_HELLO_REQ, Ev.EVT_EAP_TLS_HELLO_REQ ):( (obj._eapTlsHelloReq,), St.ST_EAP_TLS_CERT_REQ),
13
14 ## CurrentState Event Actions NextState
15
16 (St.ST_EAP_START, Ev.EVT_EAP_START ):( (obj._eapStart,), St.ST_EAP_ID_REQ),
17
18 ## CurrentState Event Actions NextState
19
20 (St.ST_EAP_ID_REQ, Ev.EVT_EAP_ID_REQ ):( (obj._eapIdReq,), St.ST_EAP_TLS_HELLO_REQ),
21
22 ## CurrentState Event Actions NextState
23
24 (St.ST_EAP_TLS_CERT_REQ, Ev.EVT_EAP_TLS_CERT_REQ ):( (obj._eapTlsCertReq,), St.ST_EAP_TLS_DONE),
25
26}
27