Ethereal-dev: [Ethereal-dev] Re: Colour filter issue

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Mike Frisch <mfrisch@xxxxxxxxxx>
Date: Thu, 8 Aug 2002 15:17:37 -0400
On Thu, Aug 08, 2002 at 12:07:10PM -0700, Guy Harris wrote:
> NFS-over-TCP can result in multiple operations and success/failure
> responses coming back in a single frame; Mike, is this NFS-over-TCP, and
> are the cases where
> 
> 	nfs.status != 0 && nfs.status != 2
> 
> is finding frames containing an NFS reply with an "nfs.status" of 2
> cases where there are multiple NFS replies in the same frame, where, for
> example, one reply has "nfs.status" of 2 (which matches "nfs.status != 0")
> and another reply has an "nfs.status" other than 2 (which matches
> "nfs.status != 2")?

This is not NFS over TCP.

I understand what you're saying, but why does

nfs.status == 1 || nfs.status > 2

work in this circumstance?