From 34b09ca8643bcc94ea44a195e64601247065314e Mon Sep 17 00:00:00 2001 From: Jonathan Schleifer Date: Thu, 20 Sep 2012 02:14:04 +0200 Subject: [PATCH] Adjust to latest ObjFW changes. --- src/SSLSocket.m | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/SSLSocket.m b/src/SSLSocket.m index c9820a2..edeffd1 100644 --- a/src/SSLSocket.m +++ b/src/SSLSocket.m @@ -243,8 +243,8 @@ ssl_locking_callback(int mode, int n, const char *file, int line) [super close]; } -- (size_t)_readIntoBuffer: (void*)buffer - length: (size_t)length +- (size_t)lowlevelReadIntoBuffer: (void*)buffer + length: (size_t)length { ssize_t ret; @@ -285,8 +285,8 @@ ssl_locking_callback(int mode, int n, const char *file, int line) return ret; } -- (void)_writeBuffer: (const void*)buffer - length: (size_t)length +- (void)lowlevelWriteBuffer: (const void*)buffer + length: (size_t)length { if (length > INT_MAX) @throw [OFOutOfRangeException exceptionWithClass: [self class]];