Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

PRProtoEnt

Protocol entry returned by PR_GetProtoByName and PR_GetProtoByNumber.

Syntax

#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.

Document Tags and Contributors

 Contributors to this page: teoli, Rappo
 Last updated by: teoli,