blob: 908c25cee1b12b3294a87f1e63ab1f91c8649f9a [file] [log] [blame]
Chetan Gaonkercd974cd2016-03-04 14:56:58 -08001#!/usr/bin/env python
2
3def initMd5AuthHolderFsmTable(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_MD5_CHALLENGE, Ev.EVT_EAP_MD5_CHALLENGE ):( (obj._eapMd5Challenge,), St.ST_EAP_STATUS),
13
14 ## CurrentState Event Actions NextState
15
16 (St.ST_EAP_STATUS, Ev.EVT_EAP_STATUS ):( (obj._eapStatus,), St.ST_EAP_MD5_DONE),
17
18 ## CurrentState Event Actions NextState
19
20 (St.ST_EAP_ID_REQ, Ev.EVT_EAP_ID_REQ ):( (obj._eapIdReq,), St.ST_EAP_MD5_CHALLENGE),
21
22 ## CurrentState Event Actions NextState
23
24 (St.ST_EAP_START, Ev.EVT_EAP_START ):( (obj._eapStart,), St.ST_EAP_ID_REQ),
25
26}
27