Update the sockets library code
* Passes conformance and functional tests. * Builds with GCC 4.4 compiler. Signed-off by: lpleahy git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12497 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -18,9 +18,11 @@
|
||||
/**
|
||||
Bind a name to a socket.
|
||||
|
||||
The ::bind routine connects a name to a socket on the local machine. The
|
||||
The bind routine connects a name (network address) to a socket on the local machine.
|
||||
|
||||
The
|
||||
<a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/bind.html">POSIX</a>
|
||||
documentation for the bind routine is available online for reference.
|
||||
documentation is available online.
|
||||
|
||||
@param[in] s Socket file descriptor returned from ::socket.
|
||||
|
||||
@@ -37,6 +39,7 @@
|
||||
@param[in] namelen Specifies the length in bytes of the sockaddr structure.
|
||||
|
||||
@return The bind routine returns zero (0) if successful and -1 upon failure.
|
||||
In the case of an error, ::errno contains more information.
|
||||
|
||||
**/
|
||||
int
|
||||
|
Reference in New Issue
Block a user