#, fuzzy msgid "" msgstr "" "Project-Id-Version: man-pages-l10n VERSION\n" "POT-Creation-Date: 2014-07-17 17:58+0900\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. type: TH #: man-pages-posix/man3p/bind.3p:2 #, no-wrap msgid "BIND" msgstr "" #. type: TH #: man-pages-posix/man3p/bind.3p:2 #, no-wrap msgid "2013" msgstr "" #. type: TH #: man-pages-posix/man3p/bind.3p:2 #, no-wrap msgid "IEEE/The Open Group" msgstr "" #. type: TH #: man-pages-posix/man3p/bind.3p:2 #, no-wrap msgid "POSIX Programmer's Manual" msgstr "" #. type: SH #: man-pages-posix/man3p/bind.3p:3 #, no-wrap msgid "PROLOG" msgstr "" #. type: Plain text #: man-pages-posix/man3p/bind.3p:8 msgid "" "This manual page is part of the POSIX Programmer's Manual. The Linux " "implementation of this interface may differ (consult the corresponding Linux " "manual page for details of Linux behavior), or the interface may not be " "implemented on Linux." msgstr "" #. type: SH #: man-pages-posix/man3p/bind.3p:9 #, no-wrap msgid "NAME" msgstr "" #. type: Plain text #: man-pages-posix/man3p/bind.3p:12 msgid "bind \\(em bind a name to a socket" msgstr "" #. type: SH #: man-pages-posix/man3p/bind.3p:12 #, no-wrap msgid "SYNOPSIS" msgstr "" #. type: Plain text #: man-pages-posix/man3p/bind.3p:16 #, no-wrap msgid "#include Esys/socket.hE\n" msgstr "" #. type: Plain text #: man-pages-posix/man3p/bind.3p:19 #, no-wrap msgid "" "int bind(int I, const struct sockaddr *I
,\n" " socklen_t I);\n" msgstr "" #. type: SH #: man-pages-posix/man3p/bind.3p:20 #, no-wrap msgid "DESCRIPTION" msgstr "" #. type: Plain text #: man-pages-posix/man3p/bind.3p:31 msgid "" "The I() function shall assign a local socket address I
to a " "socket identified by descriptor I that has no local socket address " "assigned. Sockets created with the I() function are initially " "unnamed; they are identified only by their address family." msgstr "" #. type: Plain text #: man-pages-posix/man3p/bind.3p:35 msgid "The I() function takes the following arguments:" msgstr "" #. type: IP #: man-pages-posix/man3p/bind.3p:35 #, no-wrap msgid "I" msgstr "" #. type: Plain text #: man-pages-posix/man3p/bind.3p:37 msgid "Specifies the file descriptor of the socket to be bound." msgstr "" #. type: IP #: man-pages-posix/man3p/bind.3p:37 #, no-wrap msgid "I
" msgstr "" #. type: Plain text #: man-pages-posix/man3p/bind.3p:42 msgid "" "Points to a B structure containing the address to be bound to the " "socket. The length and format of the address depend on the address family of " "the socket." msgstr "" #. type: IP #: man-pages-posix/man3p/bind.3p:42 #, no-wrap msgid "I" msgstr "" #. type: Plain text #: man-pages-posix/man3p/bind.3p:48 msgid "" "Specifies the length of the B structure pointed to by the " "I
argument." msgstr "" #. type: Plain text #: man-pages-posix/man3p/bind.3p:54 msgid "" "The socket specified by I may require the process to have " "appropriate privileges to use the I() function." msgstr "" #. type: Plain text #: man-pages-posix/man3p/bind.3p:63 msgid "" "If the address family of the socket is AF_UNIX and the pathname in " "I
names a symbolic link, I() shall fail and set I to " "B<[EADDRINUSE]>." msgstr "" #. type: Plain text #: man-pages-posix/man3p/bind.3p:79 msgid "" "If the socket address cannot be assigned immediately and O_NONBLOCK is set " "for the file descriptor for the socket, I() shall fail and set " "I to B<[EINPROGRESS]>, but the assignment request shall not be " "aborted, and the assignment shall be completed asynchronously. Subsequent " "calls to I() for the same socket, before the assignment is completed, " "shall fail and set I to B<[EALREADY]>." msgstr "" #. type: Plain text #: man-pages-posix/man3p/bind.3p:87 msgid "" "When the assignment has been performed asynchronously, I(), " "I