Lines Matching defs:ieee802_1x_cp_sm
28 struct ieee802_1x_cp_sm { struct
29 enum cp_states {
33 } CP_state;
34 bool changed;
37 bool port_valid;
40 enum connect_type connect;
43 bool chgd_server; /* clear by CP */
44 bool elected_self;
45 enum confidentiality_offset cipher_offset;
46 u64 cipher_suite;
47 bool new_sak; /* clear by CP */
48 struct ieee802_1x_mka_ki distributed_ki;
49 u8 distributed_an;
50 bool using_receive_sas;
51 bool all_receiving;
52 bool server_transmitting;
53 bool using_transmit_sa;
56 struct ieee802_1x_mka_ki *lki;
57 u8 lan;
58 bool ltx;
59 bool lrx;
60 struct ieee802_1x_mka_ki *oki;
61 u8 oan;
62 bool otx;
63 bool orx;
66 bool protect_frames;
67 enum validate_frames validate_frames;
69 bool replay_protect;
70 u32 replay_window;
72 u64 current_cipher_suite;
96 static int changed_cipher(struct ieee802_1x_cp_sm *sm) in changed_cipher() argument