@@ -195,11 +195,11 @@ if (sock == INVALID_SOCKET) @throw [OFNotConnectedException newWithClass: isa socket: self]; - if (isAtEndOfStream) { + if (atEndOfStream) { OFReadFailedException *e; e = [OFReadFailedException newWithClass: isa stream: self requestedLength: length]; @@ -216,11 +216,11 @@ @throw [OFReadFailedException newWithClass: isa stream: self requestedLength: length]; if (ret == 0) - isAtEndOfStream = YES; + atEndOfStream = YES; return ret; } - (void)_writeNBytes: (size_t)length @@ -231,11 +231,11 @@ if (sock == INVALID_SOCKET) @throw [OFNotConnectedException newWithClass: isa socket: self]; - if (isAtEndOfStream) { + if (atEndOfStream) { OFWriteFailedException *e; e = [OFWriteFailedException newWithClass: isa stream: self requestedLength: length]; @@ -288,11 +288,11 @@ if (![type isEqual: @"tls-unique"]) @throw [OFInvalidArgumentException newWithClass: isa selector: _cmd]; - if (SSL_session_reused(ssl) ^ !isListening) { + if (SSL_session_reused(ssl) ^ !listening) { /* * We are either client or the session has been resumed * => we have sent the finished message */ length = SSL_get_finished(ssl, buffer, 64);