svn commit: r254484 - head/lib/libc/net
Hiroki Sato
hrs at FreeBSD.org
Mon Aug 19 11:44:12 UTC 2013
Pawel Jakub Dawidek <pjd at FreeBSD.org> wrote
in <201308181038.r7IAcxkM008487 at svn.freebsd.org>:
pj> Author: pjd
pj> Date: Sun Aug 18 10:38:59 2013
pj> New Revision: 254484
pj> URL: http://svnweb.freebsd.org/changeset/base/254484
pj>
pj> Log:
pj> Consistently use 'af' as an argument name for address family.
pj> Now both gethostbyname2(3) and gethostbyaddr(3) use the same argument name.
pj> The same argument name is also used in implementations of those functions.
pj>
pj> Modified:
pj> head/lib/libc/net/gethostbyname.3
pj>
pj> Modified: head/lib/libc/net/gethostbyname.3
pj> ==============================================================================
pj> --- head/lib/libc/net/gethostbyname.3 Sun Aug 18 10:33:46 2013 (r254483)
pj> +++ head/lib/libc/net/gethostbyname.3 Sun Aug 18 10:38:59 2013 (r254484)
pj> @@ -51,7 +51,7 @@
pj> .Ft struct hostent *
pj> .Fn gethostbyname2 "const char *name" "int af"
pj> .Ft struct hostent *
pj> -.Fn gethostbyaddr "const void *addr" "socklen_t len" "int type"
pj> +.Fn gethostbyaddr "const void *addr" "socklen_t len" "int af"
pj> .Ft struct hostent *
pj> .Fn gethostent void
pj> .Ft void
pj> @@ -107,7 +107,7 @@ in binary form
pj> .Tn ASCII
pj> form).
pj> The
pj> -.Fa type
pj> +.Fa af
pj> argument specifies the address family
pj> (e.g.\&
pj> .Dv AF_INET , AF_INET6 ,
I do not think we need to change this for consistency between the
manual page and its implementation. gethostbyaddr()'s "int type"
appears literally in POSIX and almost all systems have used that
definition for a long time.
-- Hiroki
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 196 bytes
Desc: not available
URL: <http://lists.freebsd.org/pipermail/svn-src-all/attachments/20130819/a595ffc3/attachment.sig>
More information about the svn-src-all
mailing list