Searched defs:retry_max (Results 1 - 4 of 4) sorted by relevance

/external/ppp/pppd/plugins/radius/
H A Dsendserver.c207 int retry_max; local
258 retry_max = data->retries; /* Max. numbers to try for reply */
316 * Timed out waiting for response. Retry "retry_max" times
317 * before giving up. If retry_max = 0, don't retry at all.
319 if (++retries >= retry_max)
/external/libevent/
H A Dhttp-internal.h88 int retry_max; /* maximum number of retries */ member in struct:evhttp_connection
H A Dhttp.c1286 if (evcon->retry_max < 0 || evcon->retry_cnt < evcon->retry_max) {
2091 evcon->retry_cnt = evcon->retry_max = 0;
2160 int retry_max)
2162 evcon->retry_max = retry_max;
2159 evhttp_connection_set_retries(struct evhttp_connection *evcon, int retry_max) argument
/external/curl/lib/
H A Dtftp.c130 int retry_max; member in struct:tftp_state_data
224 state->retry_max = (int)timeout/5;
226 if(state->retry_max < 1)
228 state->retry_max = 1;
231 state->retry_time = (int)timeout/state->retry_max;
248 state->retry_max = (int)timeout/5;
251 if(state->retry_max<3)
252 state->retry_max=3;
254 if(state->retry_max>50)
255 state->retry_max
[all...]

Completed in 485 milliseconds