Merge pull request #13742 from mikaleppanen/radius_init

Add initialization to radius retry values
pull/13768/head
Martin Kojtal 2020-10-13 11:16:25 +01:00 committed by GitHub
commit 6fc886a37f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -314,7 +314,11 @@ private:
mesh_error_t set_bbr_radius_shared_secret(void);
mesh_error_t set_bbr_radius_timing(void);
char _radius_ipv6_addr[40];
ws_br_radius_timing_t _radius_timing;
ws_br_radius_timing_t _radius_timing = {
.radius_retry_imin = 0,
.radius_retry_imax = 0,
.radius_retry_count = 0
};
char *_shared_secret = NULL;
uint16_t _shared_secret_len = 0;
int8_t _mesh_if_id = -1;