@@ -147,12 +147,11 @@ #else OF_UNRECOGNIZED_SELECTOR #endif } -- (size_t)receiveIntoBuffer: (void *)buffer - length: (size_t)length +- (size_t)receiveIntoBuffer: (void *)buffer length: (size_t)length { ssize_t ret; if (_socket == INVALID_SOCKET) @throw [OFNotOpenException exceptionWithObject: self]; @@ -175,12 +174,11 @@ #endif return ret; } -- (void)asyncReceiveIntoBuffer: (void *)buffer - length: (size_t)length +- (void)asyncReceiveIntoBuffer: (void *)buffer length: (size_t)length { [self asyncReceiveIntoBuffer: buffer length: length runLoopMode: of_run_loop_mode_default]; } @@ -226,12 +224,11 @@ block: block delegate: nil]; } #endif -- (void)sendBuffer: (const void *)buffer - length: (size_t)length +- (void)sendBuffer: (const void *)buffer length: (size_t)length { if (_socket == INVALID_SOCKET) @throw [OFNotOpenException exceptionWithObject: self]; #ifndef OF_WINDOWS @@ -267,12 +264,11 @@ errNo: 0]; } - (void)asyncSendData: (OFData *)data { - [self asyncSendData: data - runLoopMode: of_run_loop_mode_default]; + [self asyncSendData: data runLoopMode: of_run_loop_mode_default]; } - (void)asyncSendData: (OFData *)data runLoopMode: (of_run_loop_mode_t)runLoopMode {