diff --git a/libfreerdp/crypto/tls.c b/libfreerdp/crypto/tls.c index 6e75f4434..1b04fe9fa 100644 --- a/libfreerdp/crypto/tls.c +++ b/libfreerdp/crypto/tls.c @@ -78,12 +78,6 @@ struct _BIO_RDP_TLS }; typedef struct _BIO_RDP_TLS BIO_RDP_TLS; -static long bio_rdp_tls_callback(BIO* bio, int mode, const char* argp, int argi, - long argl, long ret) -{ - return 1; -} - static int bio_rdp_tls_write(BIO* bio, const char* buf, int size) { int error; @@ -1052,21 +1046,6 @@ BOOL tls_send_alert(rdpTls* tls) return TRUE; } -static BIO* findBufferedBio(BIO* front) -{ - BIO* ret = front; - - while (ret) - { - if (BIO_method_type(ret) == BIO_TYPE_BUFFERED) - return ret; - - ret = BIO_next(ret); - } - - return ret; -} - int tls_write_all(rdpTls* tls, const BYTE* data, int length) { int status;