@@ -136,14 +136,14 @@ - (void)asyncReadWithBuffer: (void*)buffer length: (size_t)length block: (of_stream_async_read_block_t)block { - [OFRunLoop _addAsyncReadForStream: self - buffer: buffer - length: length - block: block]; + [OFRunLoop OF_addAsyncReadForStream: self + buffer: buffer + length: length + block: block]; } - (void)readIntoBuffer: (void*)buffer exactLength: (size_t)length { @@ -692,13 +692,13 @@ } - (void)asyncReadLineWithEncoding: (of_string_encoding_t)encoding block: (of_stream_async_read_line_block_t)block { - [OFRunLoop _addAsyncReadLineForStream: self - encoding: encoding - block: block]; + [OFRunLoop OF_addAsyncReadLineForStream: self + encoding: encoding + block: block]; } #endif - (OFString*)tryReadLine { @@ -1436,10 +1436,10 @@ { @throw [OFNotImplementedException exceptionWithClass: [self class] selector: _cmd]; } -- (BOOL)_isWaitingForDelimiter +- (BOOL)OF_isWaitingForDelimiter { return waitingForDelimiter; } @end