Method: OpenSSL::SSL::SSLSocket#syswrite
- Defined in:
- ext/rubysl/openssl/ossl_ssl.c
#syswrite(string) ⇒ Integer
Writes string to the SSL connection.
1850 1851 1852 1853 1854 |
# File 'ext/rubysl/openssl/ossl_ssl.c', line 1850
static VALUE
ossl_ssl_write(VALUE self, VALUE str)
{
return ossl_ssl_write_internal(self, str, Qfalse);
}
|