Lines Matching refs:timeout
456 "LDAP: Could not set the connection timeout");
464 * function calls and not just ldap_search_ext_s(), which accepts a timeout
468 * XXX: ldap_result() with a timeout.
496 * Replacement function for ldap_simple_bind_s() with a timeout.
503 char* bindpw, struct timeval *timeout)
512 rc = ldap_result(ldc->ldap, msgid, 0, timeout, &result);
987 "failed with timeout";
1144 ldc->reason = "ldap_compare_s() failed with timeout";
1264 ldc->reason = "ldap_search_ext_s() for subgroups failed with timeout";
1742 ldc->reason = "ldap_search_ext_s() for user failed with timeout";
2590 "ldap connection: Setting connection timeout to %ld seconds.",
2594 "LDAP: Connection timeout option not supported by the "
2684 long timeout;
2695 timeout = strtol(val, &endptr, 10);
2699 if (timeout < 0) {
2703 if (timeout) {
2707 st->opTimeout->tv_sec = timeout;
2714 "ldap connection: Setting op timeout to %ld seconds.",
2715 timeout);
2724 apr_interval_time_t timeout;
2729 if (ap_timeout_parameter_parse(val, &timeout, "s") != APR_SUCCESS) {
2733 if (timeout < 0) {
2735 timeout = AP_LDAP_CONNPOOL_INFINITE;
2737 st->connection_pool_ttl = timeout;
2744 apr_interval_time_t timeout;
2754 if (ap_timeout_parameter_parse(val, &timeout, "s") != APR_SUCCESS) {
2758 if (timeout < 0) {
2762 st->retry_delay = timeout;
2859 able to handle the connection timeout per-connection
2860 but the Novell SDK cannot. Allowing the timeout to
3147 "Specify the LDAP socket connection timeout in seconds "
3165 "Specify the LDAP bind/search timeout in seconds "