OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:next_wait
(Results
1 - 2
of
2
) sorted by null
/external/wpa_supplicant_6/wpa_supplicant/src/radius/
radius_client.c
54
int
next_wait
;
member in struct:radius_msg_list
199
entry->next_try = now + entry->
next_wait
;
200
entry->
next_wait
*= 2;
201
if (entry->
next_wait
> RADIUS_CLIENT_MAX_WAIT)
202
entry->
next_wait
= RADIUS_CLIENT_MAX_WAIT;
385
entry->
next_wait
= RADIUS_CLIENT_FIRST_WAIT * 2;
786
entry->
next_wait
= RADIUS_CLIENT_FIRST_WAIT * 2;
[
all
...]
/external/wpa_supplicant_8/src/radius/
radius_client.c
118
*
next_wait
- Next retransmission wait time in seconds
120
int
next_wait
;
member in struct:radius_msg_list
359
entry->next_try = now + entry->
next_wait
;
360
entry->
next_wait
*= 2;
361
if (entry->
next_wait
> RADIUS_CLIENT_MAX_WAIT)
362
entry->
next_wait
= RADIUS_CLIENT_MAX_WAIT;
544
entry->
next_wait
= RADIUS_CLIENT_FIRST_WAIT * 2;
983
entry->
next_wait
= RADIUS_CLIENT_FIRST_WAIT * 2;
[
all
...]
Completed in 17 milliseconds