:orphan: .. index:: pair: group; TAPI for name/address resolution remote calls .. _doxid-group__te__lib__rpc__netdb: TAPI for name/address resolution remote calls ============================================= .. toctree:: :hidden: Overview ~~~~~~~~ .. ref-code-block:: cpp :class: doxyrest-overview-code-block // global functions struct hostent* :ref:`rpc_gethostbyname`(:ref:`rcf_rpc_server`* handle, const char* name); struct hostent* :ref:`rpc_gethostbyaddr`(:ref:`rcf_rpc_server`* handle, const char* addr, int len, :ref:`rpc_socket_addr_family` type); .. _details-group__te__lib__rpc__netdb: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Global Functions ---------------- .. index:: pair: function; rpc_gethostbyname .. _doxid-group__te__lib__rpc__netdb_1ga51fd114b9447177e7da89130f8145c4b: .. ref-code-block:: cpp :class: doxyrest-title-code-block struct hostent* rpc_gethostbyname(:ref:`rcf_rpc_server`* handle, const char* name) Get network host entry by given name. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - handle - RPC Server * - name - given name may be * string hostname * ipv4 address in standart dot notation * ipv6 address .. rubric:: Returns: Host entry on success otherwise NULL .. index:: pair: function; rpc_gethostbyaddr .. _doxid-group__te__lib__rpc__netdb_1gaee50e2dd3c090b66e907da224b81af68: .. ref-code-block:: cpp :class: doxyrest-title-code-block struct hostent* rpc_gethostbyaddr(:ref:`rcf_rpc_server`* handle, const char* addr, int len, :ref:`rpc_socket_addr_family` type) Get network host entry by given address. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - handle - RPC Server * - addr - given address * - len - length of given address * - type - address type (IF_INET or IF_INET6) .. rubric:: Returns: Host entry on success otherwise NULL