> >So I think I'll make small changes to getaddrinfo() for it to
> >also support shortend form(such as 172.16 for 172.0.0.16 above),
> >after some more wait, maybe today.
>
> In which case, could you also make the following change (untested) to
> netstat(1) to remove the ambiguity in address abbreviations:
Wmmm, this might be reasonable, but are not there any hidden
thought on this?
As I checked the cvsweb, this code seems to be there from the
beginning.
I feel discussing and trying this after 4.0 will be safer,
because this contradiction have been there for a long time.
Yoshinobu Inoue
> }
> if (cp)
> strncpy(line, cp, sizeof(line) - 1);
> - else if ((i & 0xffffff) == 0)
> - sprintf(line, "%lu", C(i >> 24));
> - else if ((i & 0xffff) == 0)
> - sprintf(line, "%lu.%lu", C(i >> 24) , C(i >> 16));
> - else if ((i & 0xff) == 0)
> - sprintf(line, "%lu.%lu.%lu", C(i >> 24), C(i >> 16), C(i >> 8));
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message