OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ssl_err
(Results
1 - 5
of
5
) sorted by relevancy
/src/external/bsd/libpcap/dist/
sslutils.c
191
int
ssl_err
= SSL_get_error(ssl, status); // TODO: does it pop the error?
local
192
if (
ssl_err
== SSL_ERROR_ZERO_RETURN)
196
else if (
ssl_err
== SSL_ERROR_SYSCALL)
214
int
ssl_err
= SSL_get_error(ssl, status);
local
215
if (
ssl_err
== SSL_ERROR_ZERO_RETURN)
219
else if (
ssl_err
== SSL_ERROR_SYSCALL)
/src/external/bsd/ppp/dist/pppd/
tls.c
442
unsigned long
ssl_err
= ERR_get_error();
local
444
if (
ssl_err
!= 0)
446
while (
ssl_err
!= 0) {
447
dbglog( ERR_error_string(
ssl_err
, NULL ) );
448
ssl_err
= ERR_get_error();
/src/external/bsd/nsd/dist/
nsd-control.c
89
static void
ssl_err
(const char* s) ATTR_NORETURN;
147
static void
ssl_err
(const char* s)
function
164
ssl_err
(s);
191
ssl_err
("could not allocate SSL_CTX pointer");
195
ssl_err
("could not set SSL_OP_NO_SSLv2");
199
ssl_err
("could not set SSL_OP_NO_SSLv3");
204
ssl_err
("could not set SSL_OP_NO_RENEGOTIATION");
211
ssl_err
("Error setting up SSL_CTX client key");
384
ssl_err
("could not SSL_new");
388
ssl_err
("could not SSL_set_fd")
[
all
...]
/src/usr.bin/ftp/
ssl.c
607
int ret,
ssl_err
, flags, rv, timeout_secs;
local
675
ssl_err
= SSL_get_error(ssl, ret);
676
DPRINTF("%s: SSL_connect() ret=%d
ssl_err
=%d\n",
677
__func__, ret,
ssl_err
);
682
if (
ssl_err
== SSL_ERROR_WANT_READ) {
684
} else if (
ssl_err
== SSL_ERROR_WANT_WRITE) {
/src/external/bsd/unbound/dist/smallapp/
unbound-control.c
84
static void
ssl_err
(const char* s) ATTR_NORETURN;
524
static void
ssl_err
(const char* s)
function
541
ssl_err
(s);
561
ssl_err
("could not allocate SSL_CTX pointer");
565
ssl_err
("could not set SSL_OP_NO_SSLv2");
569
ssl_err
("could not set SSL_OP_NO_SSLv3");
574
ssl_err
("could not set SSL_OP_NO_RENEGOTIATION");
581
ssl_err
("Error setting up SSL_CTX client key");
771
ssl_err
("could not SSL_new");
775
ssl_err
("could not SSL_set_fd")
[
all
...]
Completed in 106 milliseconds
Indexes created Mon Apr 20 00:23:12 UTC 2026