Ethereal-dev: Re: [Ethereal-dev] X.2 dissector needs some slight fixing

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

From: Guy Harris <gharris@xxxxxxxxxxxx>
Date: Thu, 28 Dec 2000 17:14:43 -0800
On Fri, Dec 29, 2000 at 11:28:58AM +1000, Richard Sharpe wrote:
> Well, indeed, but I was concerned about whether or not Ethereal supported
> the use a period in a name like that in a filter string.

Filter name tokens are strings containing a mix of letters, digits,
periods, underscores, or hyphens; the lexical analyzer and parser don't
care where the periods are, it just hands the string to
"dfilter_lookup_token()", which looks it up in a tree.

I.e., the significance of "." in filter name tokens is conventional, not
syntactical; it's not assumed by the filter code to separate components
of names.