1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-12 06:41:13 +02:00

(socket): Use PF_ instead of AF_ prefix.

This commit is contained in:
Marius Vollmer 2003-05-17 18:09:31 +00:00
parent 9950a42cc5
commit ee037c0325

View file

@ -2167,16 +2167,16 @@ in host order.
@deffn {Scheme Procedure} socket family style proto @deffn {Scheme Procedure} socket family style proto
@deffnx {C Function} scm_socket (family, style, proto) @deffnx {C Function} scm_socket (family, style, proto)
@vindex AF_UNIX @vindex PF_UNIX
@vindex AF_INET @vindex PF_INET
@vindex AF_INET6 @vindex PF_INET6
@vindex SOCK_STREAM @vindex SOCK_STREAM
@vindex SOCK_DGRAM @vindex SOCK_DGRAM
@vindex SOCK_RAW @vindex SOCK_RAW
Return a new socket port of the type specified by @var{family}, Return a new socket port of the type specified by @var{family},
@var{style} and @var{proto}. All three parameters are @var{style} and @var{proto}. All three parameters are
integers. Supported values for @var{family} are integers. Supported values for @var{family} are
@code{AF_UNIX}, @code{AF_INET} and @code{AF_INET6}. @code{PF_UNIX}, @code{PF_INET} and @code{PF_INET6}.
Typical values for @var{style} are @code{SOCK_STREAM}, Typical values for @var{style} are @code{SOCK_STREAM},
@code{SOCK_DGRAM} and @code{SOCK_RAW}. @code{SOCK_DGRAM} and @code{SOCK_RAW}.