1
0
Fork 0
firefox/docs/nspr/reference/prprotoent.rst
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

37 lines
578 B
ReStructuredText

PRProtoEnt
==========
Protocol entry returned by :ref:`PR_GetProtoByName` and
:ref:`PR_GetProtoByNumber`.
Syntax
------
.. code::
#include <prnetdb.h>
typedef struct PRProtoEnt {
char *p_name;
char **p_aliases;
#if defined(_WIN32)
PRInt16 p_num;
#else
PRInt32 p_num;
#endif
} PRProtoEnt;
Fields
~~~~~~
The structure has the following fields:
``p_name``
Pointer to official protocol name.
``p_aliases``
Pointer to a pointer to a list of aliases. The list is terminated
with a ``NULL`` entry.
``p_num``
Protocol number.