SSL_write

Writes bytes to an SSL connection

extern (C)
int
SSL_write
(,
const(void*) buf
,
int num
)

Parameters

ssl SSL*

the SSL connection

buf const(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 if action must be taken by the calling process.

Meta