Section: Manual del Programador de Linux (3)
Updated: 29 Enero 1998
Index Return to Main
Contents
getprotoent, getprotobyname, getprotobynumber, setprotoent, endprotoent - obtienen una entrada del fichero de protocolos
#include <netdb.h> struct protoent *getprotoent(void); struct protoent *getprotobyname(const char *nombre); struct protoent *getprotobynumber(int proto); void setprotoent(int dejaloabierto); void endprotoent(void);
La función getprotoent() lee la siguiente línea del fichero /etc/protocols y devuelve una estructura protoent que contiene los campos de que consta la línea. El fichero /etc/protocols se abre si es necesario.
La función getprotobyname() devuelve una estructura protoent para la línea de /etc/protocols que concuerde con el nombre de protocolo nombre.
La función getprotobynumber() devuelve una estructura protoent para la línea que concuerde con el número de protocolo proto.
La función setprotoent() abre y rebobina el fichero /etc/protocols. Si dejaloabierto es verdad (1), entonces el fichero no se cerrará entre llamadas a getprotobyname() o a getprotobynumber().
La función endprotoent() cierra /etc/protocols.
La estructura protoent se define en <netdb.h> así:
struct protoent { char *p_name; /* nombre oficial de protocolo */ char **p_aliases; /* lista de sinónimos */ int p_proto; /* número de protocolo */ }
Los miembros de la estructura protoent son:
Las funciones getprotoent(), getprotobyname() y getprotobynumber() devuelven la estructura protoent, o un puntero NULL si ocurre un error o si se llega al final del fichero.
(3), getnetent(3), protocols(5)
This document was created by man2html, using
the manual pages.
Time: 06:16:22 GMT, January 22, 2005