PR_Bind 编辑
Binds an address to a specified socket.
Syntax
#include <prio.h> /wiki/en-US/docs/Mozilla/Projects/NSPR/Reference/PRStatus PR_Bind( /wiki/en-US/docs/Mozilla/Projects/NSPR/Reference/PRFileDesc *fd, const /wiki/en-US/docs/Mozilla/Projects/NSPR/Reference/PRNetAddr *addr);
Parameters
The function has the following parameters:
fd
- A pointer to a
/wiki/en-US/docs/Mozilla/Projects/NSPR/Reference/PRFileDesc
object representing a socket. addr
- A pointer to a
/wiki/en-US/docs/Mozilla/Projects/NSPR/Reference/PRNetAddr
object representing the address to which the socket will be bound.
Returns
The function returns one of the following values:
- Upon successful binding of an address to a socket,
PR_SUCCESS
. - If unsuccessful,
PR_FAILURE
. Further information can be obtained by calling/wiki/en-US/docs/Mozilla/Projects/NSPR/Reference/PR_GetError
.
Description
When a new socket is created, it has no address bound to it. PR_Bind
assigns the specified address (also known as name) to the socket. If you do not care about the exact IP address assigned to the socket, set the inet.ip
field of /wiki/en-US/docs/Mozilla/Projects/NSPR/Reference/PRNetAddr
to PR_htonl
(PR_INADDR_ANY
). If you do not care about the TCP/UDP port assigned to the socket, set the inet.port
field of /wiki/en-US/docs/Mozilla/Projects/NSPR/Reference/PRNetAddr
to 0.
Note that if /wiki/en-US/docs/Mozilla/Projects/NSPR/Reference/PR_Connect
is invoked on a socket that is not bound, it implicitly binds an arbitrary address the socket.
Call /wiki/en-US/docs/Mozilla/Projects/NSPR/Reference/PR_GetSockName
to obtain the address (name) bound to a socket.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论