blob: bc004c037efdbf8a728b291c7a61526147b47691 (
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
|
PR_FreeAddrInfo
===============
Destroys the ``PRAddrInfo`` structure returned by
:ref:`PR_GetAddrInfoByName`.
Syntax
------
.. code::
#include <prnetdb.h>
void PR_EnumerateAddrInfo(PRAddrInfo *addrInfo);
Parameters
~~~~~~~~~~
The function has the following parameters:
``addrInfo``
A pointer to a ``PRAddrInfo`` structure returned by a successful call
to :ref:`PR_GetAddrInfoByName`.
Returns
~~~~~~~
The function doesn't return anything.
|