summaryrefslogtreecommitdiffstats
path: root/docs/nspr/reference/pr_bind.rst
blob: 25bba0bcd1c54a631b96e7750225b9f730372bc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
PR_Bind
=======

Binds an address to a specified socket.


Syntax
------

.. code::

   #include <prio.h>

   PRStatus PR_Bind(
     PRFileDesc *fd,
     const PRNetAddr *addr);


Parameters
~~~~~~~~~~

The function has the following parameters:

``fd``
   A pointer to a :ref:`PRFileDesc` object representing a socket.
``addr``
   A pointer to a :ref:`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 :ref:`PR_GetError`.


Description
-----------

When a new socket is created, it has no address bound to it. :ref:`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 :ref:`PRNetAddr` to :ref:`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 :ref:`PRNetAddr` to 0.

Note that if :ref:`PR_Connect` is invoked on a socket that is not bound, it
implicitly binds an arbitrary address the socket.

Call :ref:`PR_GetSockName` to obtain the address (name) bound to a socket.