@@ -43,17 +43,17 @@ + socket { return [[[self alloc] init] autorelease]; } -- (BOOL)atEndOfStreamWithoutCache +- (BOOL)_atEndOfStream { return eos; } -- (size_t)readNBytesWithoutCache: (size_t)size - intoBuffer: (char*)buf +- (size_t)_readNBytes: (size_t)size + intoBuffer: (char*)buf { ssize_t ret; if (sock == INVALID_SOCKET || eos) @throw [OFNotConnectedException newWithClass: isa]; @@ -65,12 +65,12 @@ eos = YES; return ret; } -- (size_t)writeNBytesWithoutCache: (size_t)size - fromBuffer: (const char*)buf +- (size_t)_writeNBytes: (size_t)size + fromBuffer: (const char*)buf { ssize_t ret; if (sock == INVALID_SOCKET) @throw [OFNotConnectedException newWithClass: isa];