File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 41
41
typedef struct {
42
42
uint8_t key [GTK_LEN ]; /**< Group Transient Key (128 bits) */
43
43
uint32_t lifetime ; /**< Lifetime is seconds */
44
- uint8_t set : 1 ; /**< Group Transient Key set (valid value) */
45
- uint8_t live : 1 ; /**< Group Transient Key live (as indicated by authenticator) */
46
- uint8_t hash : 1 ; /**< Group Transient Key matches to hash */
44
+ bool set ; /**< Group Transient Key set (valid value) */
45
+ bool live ; /**< Group Transient Key live (as indicated by authenticator) */
46
+ bool hash ; /**< Group Transient Key matches to hash */
47
47
} gtk_key_t ;
48
48
49
49
typedef struct {
Original file line number Diff line number Diff line change 20
20
#include "ns_types.h"
21
21
#include "ns_list.h"
22
22
#include "ns_trace.h"
23
+ #if defined(HAVE_WS ) && (defined(HAVE_PAE_SUPP ) || defined(HAVE_PAE_AUTH ))
23
24
#include "mbedtls/nist_kw.h"
25
+ #endif
24
26
#include "Service_Libs/nist_aes_kw/nist_aes_kw.h"
25
27
26
28
#ifdef HAVE_WS
You can’t perform that action at this time.
0 commit comments