Sowmini.Varadhan at Sun.COM writes:
> > for 'field' in (all fields in datalink.conf)
> > if 'field' not in (known field names)
> > then 'field' is a private property
> 
> ? If yes, the only modification I would suggest is 
> 
>   for 'field' in (all fields in datalink.conf)
>   if 'field' not in (known field names) && 'field' starts with "_"
>     then 'field' is a private property
> 
> isn't that sufficient?

I think it's more like:

  if 'field' in (known field names)
  then 'field' is not a linkprop
  else
    if 'field' starts with "_"
    then 'field' is a private property
    else 'field' is a regular linkprop

Not sure why you need to know private versus regular at this level,
but that'd do it.

-- 
James Carlson, Solaris Networking              <james.d.carlson at sun.com>
Sun Microsystems / 35 Network Drive        71.232W   Vox +1 781 442 2084
MS UBUR02-212 / Burlington MA 01803-2757   42.496N   Fax +1 781 442 1677

Reply via email to