@@ -333,11 +333,11 @@ if (listen(sock, backLog) == -1) @throw [OFListenFailedException newWithClass: isa socket: self backLog: backLog]; - isListening = YES; + listening = YES; } - (void)listen { if (sock == INVALID_SOCKET) @@ -347,11 +347,11 @@ if (listen(sock, 5) == -1) @throw [OFListenFailedException newWithClass: isa socket: self backLog: 5]; - isListening = YES; + listening = YES; } - (OFTCPSocket*)accept { OFTCPSocket *newSocket; @@ -439,18 +439,18 @@ assert(0); } - (BOOL)isListening { - return isListening; + return listening; } - (void)close { [super close]; - isListening = NO; + listening = NO; [self freeMemory: sockAddr]; sockAddr = NULL; sockAddrLen = 0; } @end