diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-10-24 23:55:16 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-10-24 23:55:16 +0000 |
commit | fc4de7058d30387e302147c6131f85440987fe5c (patch) | |
tree | acf93bcdae31eccbc1d3622257a489e3cfc8b6fd | |
parent | 15daa63995211cbe576b28f88ad70f57abe69a37 (diff) | |
download | glibc-fc4de7058d30387e302147c6131f85440987fe5c.zip glibc-fc4de7058d30387e302147c6131f85440987fe5c.tar.gz glibc-fc4de7058d30387e302147c6131f85440987fe5c.tar.bz2 |
Update.
1999-10-20 Andreas Jaeger <aj@suse.de>
* manual/socket.texi (Address Formats): Describe usage of AF_UNIX
versus AF_LOCAL.
Patch by Robert Bihlmeyer <robbe@orcus.priv.at>.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | manual/socket.texi | 10 |
2 files changed, 13 insertions, 3 deletions
@@ -1,3 +1,9 @@ +1999-10-20 Andreas Jaeger <aj@suse.de> + + * manual/socket.texi (Address Formats): Describe usage of AF_UNIX + versus AF_LOCAL. + Patch by Robert Bihlmeyer <robbe@orcus.priv.at>. + 1999-10-24 Ulrich Drepper <drepper@cygnus.com> * math/libm-test.inc: Disable some boundary case tests for inline diff --git a/manual/socket.texi b/manual/socket.texi index 0c8fef3f..ab94f29 100644 --- a/manual/socket.texi +++ b/manual/socket.texi @@ -335,11 +335,15 @@ This designates the address format that goes with the local namespace. Details}, for information about this address format. @comment sys/socket.h -@comment BSD +@comment BSD, Unix98 @item AF_UNIX @vindex AF_UNIX -This is a synonym for @code{AF_LOCAL}, for compatibility. -(@code{PF_UNIX} is likewise a synonym for @code{PF_LOCAL}.) +This is a synonym for @code{AF_LOCAL}. Although @code{AF_LOCAL} is +mandated by POSIX.1g, @code{AF_UNIX} is portable to more systems. +@code{AF_UNIX} was the traditional name stemming from BSD, so even most +POSIX systems support it. It is also the name of choice in the Unix98 +specification. (The same is true for @code{PF_UNIX} +vs. @code{PF_LOCAL}). @comment sys/socket.h @comment GNU |