SNode.C
Loading...
Searching...
No Matches
Functions
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
31
of file
ssl.cpp
.
31
{
32
errno = 0;
33
return ::SSL_read(ssl, buf, num);
34
}
◆
SSL_write()
int core::ssl::SSL_write
(
SSL *
ssl
,
const void *
buf
,
int
num
)
Definition at line
36
of file
ssl.cpp
.
36
{
37
errno = 0;
38
return ::SSL_write(ssl, buf, num);
39
}
core
ssl
Generated on Mon Feb 10 2025 20:22:17 for SNode.C by
1.11.0