0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-25 16:22:35 +01:00

Make this link without OpenSSL. This patch should go upstream.

This commit is contained in:
William Pitcock 2008-04-01 14:57:52 -05:00
parent ecc31a989c
commit a8f0b117ba

View file

@ -102,5 +102,24 @@ rb_ssl_shutdown(rb_fde_t * F)
{
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 */