SSL_read

Read bytes from an SSL connection

extern (C)
int
SSL_read
(,
void* buf
,
int num
)

Parameters

ssl SSL*

the SSL connection

buf void*

buffer containing bytes to be written

num int

the number of bytes to be written

Return Value

Type: int

the number of bytes written to the SSL connection, or 0 if the connection was closed, or a negative value if an error occurred or action must be taken by the calling process.

Meta