Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Minor code cleanup: reformat code to 80 char line length |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | ben-testing |
Files: | files | file ages | folders |
SHA1: |
6aa5b85f0eb74b2ed1820056dde4ff77 |
User & Date: | ben 2011-06-05 08:49:10 |
Context
2011-06-05
| ||
08:54 | Merge latest SQLite from trunk check-in: be264779de user: ben tags: ben-testing | |
08:49 | Minor code cleanup: reformat code to 80 char line length check-in: 6aa5b85f0e user: ben tags: ben-testing | |
08:46 | Add ssl-ca-location setting to specify file/directory to pass to OpenSSL as the server CA location. This allows specification of CAs properly on platforms without usable centralised CA certificate lists, or management by external programs. Add note to certificate warning about this setting, and stronger instructions about what to do if the server certificate could not be verified. check-in: 636cc595e1 user: ben tags: ben-testing | |
Changes
Changes to src/http_ssl.c.
︙ | ︙ | |||
82 83 84 85 86 87 88 | } /* ** When a server requests a client certificate that hasn't been provided, ** display a warning message explaining what to do next. */ static int ssl_client_cert_callback(SSL *ssl, X509 **x509, EVP_PKEY **pkey){ | | > > > | 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | } /* ** When a server requests a client certificate that hasn't been provided, ** display a warning message explaining what to do next. */ static int ssl_client_cert_callback(SSL *ssl, X509 **x509, EVP_PKEY **pkey){ fossil_warning("The remote server requested a client certificate for " "authentication. Specify the pathname to a file containing the PEM " "encoded certificate and private key with the --ssl-identity option " "or the ssl-identity setting."); return 0; /* no cert available */ } /* ** Call this routine once before any other use of the SSL interface. ** This routine does initial configuration of the SSL module. */ |
︙ | ︙ |