SSL_write
k = SSL_write(con, &(cbuf[cbuf_off]),
k = SSL_write(con, &(buf[l]), (unsigned int) i);
if (SSL_write(scon, buf, retval) != retval)
int SSL_write(SSL *ssl, const void *buf, int num);
ret = SSL_write(ssl, out, outl);
ret = SSL_write(s, buf, (int)num);
if ((ssl_ret = SSL_write(ctx->ssl_conn, buf, buflen)) > 0) {
wlen = SSL_write(conn->ssl,
while ((s = SSL_write(config.ssl, (const char*)cmd, len)) <= 0) {