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

/dovecot/src/lib-imap-client/
H A Dimapc-connection.c130 unsigned int throttle_msecs; member in struct:imapc_connection
1325 if (conn->throttle_msecs <= 1)
1326 conn->throttle_msecs = 0;
1328 conn->throttle_msecs = conn->throttle_msecs*3 / 4;
1354 if (conn->throttle_msecs == 0)
1355 conn->throttle_msecs = conn->client->set.throttle_set.init_msecs;
1356 else if (conn->throttle_msecs < conn->last_successful_throttle_msecs)
1357 conn->throttle_msecs = conn->last_successful_throttle_msecs;
1359 conn->throttle_msecs *
[all...]

Completed in 16 milliseconds