@@ -571,19 +571,19 @@ } - (void)asyncAcceptWithTarget: (id)target selector: (SEL)selector { - [OFRunLoop OF_addAsyncAcceptForTCPSocket: self + [OFRunLoop of_addAsyncAcceptForTCPSocket: self target: target selector: selector]; } #ifdef OF_HAVE_BLOCKS - (void)asyncAcceptWithBlock: (of_tcp_socket_async_accept_block_t)block { - [OFRunLoop OF_addAsyncAcceptForTCPSocket: self + [OFRunLoop of_addAsyncAcceptForTCPSocket: self block: block]; } #endif - (OFString *)remoteAddress