Searched refs:secure (Results 1 - 5 of 5) sorted by relevance
/httpd/include/ |
H A D | util_ldap.h | 123 int secure; /* SSL/TLS mode of the connection */ member in struct:util_ldap_connection_t 165 int secure; member in struct:util_ldap_state_t 236 * @param secure use SSL on the connection 247 int secure));
|
/httpd/modules/ldap/ |
H A D | util_ldap.c | 277 int secure = APR_LDAP_NONE; local 280 * With Solaris LDAP, we enable TSL via the secure argument 286 int secure = have_client_certs ? APR_LDAP_NONE : ldc->secure; local 297 APR_LDAP_SSL == ldc->secure ? LDAPS_PORT : LDAP_PORT, 298 secure, &(result)); 356 if (APR_LDAP_NONE != ldc->secure 363 APR_LDAP_OPT_TLS, &ldc->secure, &(result)); 697 deref_options deref, int secure) 700 int secureflag = secure; 694 uldap_connection_find(request_rec *r, const char *host, int port, const char *binddn, const char *bindpw, deref_options deref, int secure) argument [all...] |
/httpd/modules/aaa/ |
H A D | mod_authnz_ldap.c | 77 int secure; /* True if SSL connections are requested */ member in struct:__anon65 348 sec->secure = -1; /*Initialize to unset*/ 462 sec->deref, sec->secure); 546 sec->deref, sec->secure); 1530 sec->secure = APR_LDAP_NONE; 1533 sec->secure = APR_LDAP_SSL; 1536 sec->secure = APR_LDAP_STARTTLS; 1544 /* "ldaps" indicates secure ldap connections desired 1548 sec->secure = APR_LDAP_SSL; 1570 sec->secure [all...] |
/httpd/modules/lua/ |
H A D | lua_request.c | 2018 int secure = 0, expires = 0, httponly = 0; local 2044 /* secure */ 2045 lua_pushstring(L, "secure"); 2048 secure = lua_toboolean(L, -1); 2076 secure = 0; 2078 secure = lua_toboolean(L, 4); 2108 secure ? "Secure;" : "",
|
/httpd/modules/mappers/ |
H A D | mod_rewrite.c | 2506 char *secure; local 2532 secure = path ? apr_strtok(NULL, ":", &tok_cntx) : NULL; 2533 httponly = secure ? apr_strtok(NULL, ":", &tok_cntx) : NULL; 2561 (secure && (!strcasecmp(secure, "true") 2562 || !strcmp(secure, "1") 2563 || !strcasecmp(secure, 2564 "secure"))) ? 2565 "; secure" : NULL,
|
Completed in 819 milliseconds