@@ -1039,16 +1039,14 @@ [self asyncAcceptWithRunLoopMode: of_run_loop_mode_default]; } - (void)asyncAcceptWithRunLoopMode: (of_run_loop_mode_t)runLoopMode { - [OFRunLoop of_addAsyncAcceptForTCPSocket: self - mode: runLoopMode -# ifdef OF_HAVE_BLOCKS - block: NULL -# endif - delegate: _delegate]; + [OFRunLoop of_addAsyncAcceptForSocket: self + mode: runLoopMode + block: NULL + delegate: _delegate]; } #ifdef OF_HAVE_BLOCKS - (void)asyncAcceptWithBlock: (of_tcp_socket_async_accept_block_t)block { @@ -1057,14 +1055,14 @@ } - (void)asyncAcceptWithRunLoopMode: (of_run_loop_mode_t)runLoopMode block: (of_tcp_socket_async_accept_block_t)block { - [OFRunLoop of_addAsyncAcceptForTCPSocket: self - mode: runLoopMode - block: block - delegate: nil]; + [OFRunLoop of_addAsyncAcceptForSocket: self + mode: runLoopMode + block: block + delegate: nil]; } #endif - (const of_socket_address_t *)remoteAddress {