| /src/libexec/httpd/libbozohttpd/ |
| Makefile | 11 SRCS= bozohttpd.c ssl-bozo.c auth-bozo.c cgi-bozo.c daemon-bozo.c 27 COPTS.ssl-bozo.c+= -Wno-error=deprecated-declarations
|
| /src/usr.bin/ftp/ |
| ssl.c | 1 /* $NetBSD: ssl.c,v 1.20 2024/09/25 16:53:58 christos Exp $ */ 38 __RCSID("$NetBSD: ssl.c,v 1.20 2024/09/25 16:53:58 christos Exp $"); 61 #include <openssl/ssl.h> 65 #include "ssl.h" 88 SSL *ssl; /* SSL handle */ member in struct:fetch_connect 132 if (conn->ssl != NULL) 133 len = SSL_write(conn->ssl, iov->iov_base, (int)iov->iov_len); 139 /* XXX perhaps we shouldn't in the SSL case * 604 SSL *ssl = NULL; local [all...] |
| Makefile | 11 SRCS+= ssl.c
|
| fetch.c | 69 #include "ssl.h" 619 ftp_socket(const struct urlinfo *ui, void **ssl, struct authinfo *auth) 630 ssl = NULL; 650 if (ssl) 651 *ssl = NULL; 715 if (ssl) { 716 if ((*ssl = fetch_start_ssl(s, host)) == NULL) { 1288 void *ssl; local 1365 if ((ssl = fetch_start_ssl(fetch_fileno(fin), oui->host)) == NULL) 1367 fetch_set_ssl(fin, ssl); 1423 void *ssl = NULL; local [all...] |
| /src/libexec/httpd/small/ |
| Makefile | 7 SRCS= bozohttpd-small.c content-bozo-small.c ssl-bozo.c main.c
|
| /src/libexec/httpd/ |
| Makefile | 14 # NO_SSL_SUPPORT /* don't support ssl (https) */ 32 SRCS= bozohttpd.c ssl-bozo.c auth-bozo.c cgi-bozo.c daemon-bozo.c \ 36 COPTS.ssl-bozo.c+=-Wno-error=deprecated-declarations
|
| ssl-bozo.c | 1 /* $NetBSD: ssl-bozo.c,v 1.34 2023/12/18 03:48:57 riastradh Exp $ */ 3 /* $eterna: ssl-bozo.c,v 1.15 2011/11/18 09:21:15 mrg Exp $ */ 33 /* this code implements SSL and backend IO for bozohttpd */ 49 #include <openssl/ssl.h> 69 /* this structure encapsulates the ssl info */ 73 SSL *bozossl; 114 * bozo_clear_ssl_queue: print the contents of the SSL error queue 122 static const char sslfmt[] = "SSL Error: %s:%s:%s"; 143 * bozo_ssl_warn works just like bozowarn, plus the SSL error queue 165 * bozo_ssl_err works just like bozoerr, plus the SSL error queu [all...] |
| /src/share/examples/refuse/ian/libfetch/ |
| common.h | 43 #include <openssl/ssl.h> 56 SSL *ssl; /* SSL handle */ member in struct:fetchconn 57 SSL_CTX *ssl_ctx; /* SSL context */ 59 SSL_METHOD *ssl_meth; /* SSL method */
|
| common.c | 316 * Enable SSL on a connection. 323 /* Init the SSL library and context */ 325 fprintf(stderr, "SSL library init failed\n"); 335 conn->ssl = SSL_new(conn->ssl_ctx); 336 if (conn->ssl == NULL){ 337 fprintf(stderr, "SSL context creation failed\n"); 340 SSL_set_fd(conn->ssl, conn->sd); 341 if (SSL_connect(conn->ssl) == -1){ 350 fprintf(stderr, "SSL connection established using %s\n", 351 SSL_get_cipher(conn->ssl)); [all...] |
| /src/usr.sbin/syslogd/ |
| tls.c | 61 /* to output SSL error codes */ 680 SSL *ssl; local 690 ssl = X509_STORE_CTX_get_ex_data(ctx, 692 conn_info = SSL_get_app_data(ssl); 917 SSL *ssl = conn_info->sslptr; local 929 rc = SSL_connect(ssl); 983 SSL *ssl = NULL local 1353 SSL *ssl; local [all...] |
| sign.c | 169 SSL *ssl; local 171 && (ssl = SSL_new(tls_opt.global_TLS_CTX))) { 175 if (!(cert = SSL_get_certificate(ssl))) { 177 FREE_SSL(ssl); 180 if (!(privkey = SSL_get_privatekey(ssl))) { 182 FREE_SSL(ssl); 187 FREE_SSL(ssl); 195 FREE_SSL(ssl);
|
| syslogd.h | 94 #include <openssl/ssl.h> 352 SSL *ssl; /* SSL object */ member in struct:filed::__anon8592::__anon8594
|
| /src/libexec/httpd/lua/ |
| bozo.lua | 46 opt.add_option{"-Z", "--ssl", action="store", dest="ssl", help="--ssl 'cert priv'"} 103 if options.ssl then 104 cert, priv = string.find(options.ssl, "(%S+)%s+(%S+)")
|
| /src/sys/compat/linux/common/ |
| linux_misc.c | 526 rlim_t ssl = l->l_proc->p_rlimit[RLIMIT_STACK].rlim_cur; local 528 if (SCARG(&cma, len) < ssl) { 530 mmoff = round_page(ssl) - SCARG(uap, len); 535 SCARG(&cma, len) = (size_t) ssl;
|
| /src/share/mk/ |
| bsd.prog.mk | 182 ssl \
|