@@ -63,17 +63,17 @@ + socket { return [[[self alloc] init] autorelease]; } -- (BOOL)_isAtEndOfStream +- (BOOL)lowlevelIsAtEndOfStream { return atEndOfStream; } -- (size_t)_readIntoBuffer: (void*)buffer - length: (size_t)length +- (size_t)lowlevelReadIntoBuffer: (void*)buffer + length: (size_t)length { ssize_t ret; if (sock == INVALID_SOCKET) @throw [OFNotConnectedException exceptionWithClass: [self class] @@ -103,12 +103,12 @@ atEndOfStream = YES; return ret; } -- (void)_writeBuffer: (const void*)buffer - length: (size_t)length +- (void)lowlevelWriteBuffer: (const void*)buffer + length: (size_t)length { if (sock == INVALID_SOCKET) @throw [OFNotConnectedException exceptionWithClass: [self class] socket: self];