United States-English |
|
|
HP-UX Reference > Nnetdir(3N)HP-UX 11i Version 3: February 2007 |
|
NAMEnetdir: netdir_getbyname(), netdir_getbyaddr(), netdir_free(), netdir_options(), taddr2uaddr(), uaddr2taddr(), netdir_perror(), netdir_sperror() — generic transport name-to-address translation SYNOPSIS#include <netdir.h> int netdir_getbyname(const struct netconfig *config, const struct nd_hostserv *service, struct nd_addrlist **addrs); int netdir_getbyaddr(const struct netconfig *config, struct nd_hostservlist **service, const struct netbuf *netaddr); void netdir_free(void *ptr, const int struct_type); int netdir_options(const struct netconfig *config, const int option, const int fildes, char *point_to_args); char *taddr2uaddr(const struct netconfig *config, const struct netbuf *addr); struct netbuf *uaddr2taddr(const struct netconfig *config, const char *uaddr); void netdir_perror(char *s); char *netdir_sperror(void); DESCRIPTIONThese routines provide a generic interface for name-to-address mapping that will work with all transport protocols. This interface provides a generic way for programs to convert transport specific addresses into common structures and back again. The netconfig structure, described on the netconfig(4) manual page, identifies the transport. The netdir_getbyname() routine maps the machine name and service name in the nd_hostserv structure to a collection of addresses of the type understood by the transport identified in the netconfig structure. This routine returns all addresses that are valid for that transport in the nd_addrlist structure. The nd_hostserv structure contains the following members: char *h_host; /* host name */ char *h_serv; /* service name */ The nd_addrlist structure contains the following members: int n_cnt; /* number of addresses */ struct netbuf *n_addrs; netdir_getbyname() accepts some special-case host names. The host names are defined in <netdir.h>. The currently defined host names are:
All fields of the nd_hostserv structure must be initialized. To find the address of a given host and service on all available transports, call the netdir_getbyname() routine with each struct netconfig structure returned by getnetconfig(). (See getnetconfig(3N)). The netdir_getbyaddr() routine maps addresses to service names. This routine returns service, a list of host and service pairs that would yield this address. If more than one tuple of host and service name is returned, then the first tuple contains the preferred host and service names: struct nd_hostservlist { int *h_cnt; /* number of hostservs found */ struct hostserv *h_hostservs; }; The netdir_free() function is used to free the structures allocated by the name to address translation routines. The ptr parameter points to the structure that has to be freed. The parameter struct_type identifies the structure: struct netbuf ND_ADDR struct nd_addrlist ND_ADDRLIST struct hostserv ND_HOSTSERV struct nd_hostservlist ND_HOSTSERVLIST The universal address returned by taddr2uaddr() should be freed by free(). The netdir_options() routine is used to do all transport-specific setups and option management. fildes is the associated file descriptor. option, fildes, and pointer_to_args are passed to the netdir_options() routine for the transport specified in config. Currently four values are defined for option: ND_SET_BROADCAST ND_SET_RESERVEDPORT ND_CHECK_RESERVEDPORT ND_MERGEADDR The taddr2uaddr() and uaddr2taddr() routines support translation between universal addresses and TLI type netbufs. The taddr2uaddr() routine takes a struct netbuf data structure and returns a pointer to a string that contains the universal address. It returns NULL if the conversion is not possible. This is not a fatal condition as some transports may not support a universal address form. uaddr2taddr() is the reverse of taddr2uaddr(). It returns the struct netbuf data structure for the given universal address. If a transport provider does not support an option, netdir_options() returns -1 and the error message can be printed through netdir_perror() or netdir_sperror(). The specific actions of each option follow.
MULTITHREAD USAGE
These functions can be called safely in a multithreaded environment. They may be cancellation points in that they call functions that are cancel points. In a multithreaded environment, these functions are not safe to be called by a child process after fork() and before exec(). These functions should not be called by a multithreaded application that supports asynchronous cancellation or asynchronous signals. RETURN VALUEThe netdir_perror() routine prints an error message on the standard output stating why one of the name-to-address mapping routines failed. The error message is preceded by the string given as an argument. The netdir_sperror() returns a pointer to a buffer which contains an error message string stating why one of the name-to-address mapping routines failed. This buffer is overwritten on each call. In multithreaded applications, this buffer is implemented as thread-specific data. The netdir_getbyaddr() function returns 0 on success and a non-zero value on failure. |
Printable version | ||
|