SNode.C
Loading...
Searching...
No Matches
core::ssl Namespace Reference
Functions
int
SSL_read
(SSL *
ssl
, void *buf, int num)
int
SSL_write
(SSL *
ssl
, const void *buf, int num)
Function Documentation
◆
SSL_read()
int core::ssl::SSL_read
(
SSL *
ssl
,
void *
buf
,
int
num
)
Definition at line
53
of file
ssl.cpp
.
53
{
54
errno = 0;
55
return ::SSL_read(
ssl
, buf, num);
56
}
core::ssl
Definition
ssl.cpp:51
◆
SSL_write()
int core::ssl::SSL_write
(
SSL *
ssl
,
const void *
buf
,
int
num
)
Definition at line
58
of file
ssl.cpp
.
58
{
59
errno = 0;
60
return ::SSL_write(
ssl
, buf, num);
61
}
core
ssl
Generated on
for SNode.C by
1.15.0