mirror of
https://github.com/matrix-construct/construct
synced 2024-11-26 00:32:35 +01:00
Make this link without OpenSSL. This patch should go upstream.
This commit is contained in:
parent
ecc31a989c
commit
a8f0b117ba
1 changed files with 19 additions and 0 deletions
|
@ -102,5 +102,24 @@ rb_ssl_shutdown(rb_fde_t * F)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
rb_ssl_accept_setup(rb_fde_t * F, int new_fd, struct sockaddr *st, int addrlen)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
ssize_t
|
||||||
|
rb_ssl_read(rb_fde_t * F, void *buf, size_t count)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
ssize_t
|
||||||
|
rb_ssl_write(rb_fde_t * F, const void *buf, size_t count)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
#endif /* !HAVE_OPENSSL */
|
#endif /* !HAVE_OPENSSL */
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue