Searched defs:opt (Results 1 - 7 of 7) sorted by relevance
/dovecot/src/lib-ldap/ |
H A D | ldap-connection.c | 43 int ret, opt; local 53 opt = LDAP_OPT_X_TLS_HARD; 55 opt = LDAP_OPT_X_TLS_ALLOW; 58 ldap_set_option(conn->conn, LDAP_OPT_X_TLS, &opt); 59 ldap_set_option(conn->conn, LDAP_OPT_X_TLS_REQUIRE_CERT, &opt); 62 opt = LDAP_OPT_X_TLS_PROTOCOL_SSL3; 63 ldap_set_option(conn->conn, LDAP_OPT_X_TLS_PROTOCOL_MIN, &opt); 65 opt = conn->set.timeout_secs; 67 ldap_set_option(conn->conn, LDAP_OPT_TIMEOUT, &opt); 68 ldap_set_option(conn->conn, LDAP_OPT_NETWORK_TIMEOUT, &opt); [all...] |
/dovecot/src/lib-ssl-iostream/ |
H A D | iostream-openssl-common.c | 13 version and opt. opt is used with SSL_set_options() and version is used with 19 long opt; member in struct:__anon143 39 *opt_r = protocol_versions[i].opt;
|
/dovecot/src/lib-storage/ |
H A D | mail-storage-settings.c | 536 const char *opt = *options; local 538 if (strcmp(opt, "add-flags-on-save") == 0) { 540 } else if (strcmp(opt, "add-flags-on-fetch") == 0) { 542 } else if (strcmp(opt, "exclude-inlined") == 0) { 544 } else if (strncmp(opt, "content-type=", 13) == 0) { 545 const char *value = p_strdup(pool, opt+13);
|
/dovecot/src/doveadm/ |
H A D | doveadm-cmd.c | 529 const struct option *opt = array_idx(&opts,li); local 531 if (opt->name == param->name)
|
/dovecot/src/lib-master/ |
H A D | master-service.c | 508 int opt, const char *arg) 512 switch (opt) { 507 master_service_parse_option(struct master_service *service, int opt, const char *arg) argument
|
/dovecot/src/lib/ |
H A D | net.c | 149 int fd, ret, opt = 1; local 167 (void)setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt)); 169 (void)setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &opt, sizeof(opt)); 366 int opt; local 372 opt = (int)size; 373 return setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &opt, sizeof(opt)); 378 int opt; local 419 int ret, fd, opt = 1; local [all...] |
/dovecot/src/auth/ |
H A D | db-ldap.c | 1110 db_ldap_set_opt(struct ldap_connection *conn, LDAP *ld, int opt, argument 1115 ret = ldap_set_option(ld, opt, value); 1123 db_ldap_set_opt_str(struct ldap_connection *conn, LDAP *ld, int opt, argument 1127 db_ldap_set_opt(conn, ld, opt, value, optname, value);
|
Completed in 74 milliseconds