freeswitch/libs/unimrcp/libs/apr-toolkit/include/apt_net.h

39 lines
993 B
C

/*
* Copyright 2008 Arsen Chaloyan
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef __APT_NET_H__
#define __APT_NET_H__
/**
* @file apt_net.h
* @brief Network Utilities
*/
#include "apt.h"
APT_BEGIN_EXTERN_C
/**
* Get the IP address (in numeric address string format) by hostname.
* @param addr the IP address
* @param pool the pool to allocate memory from
*/
apt_bool_t apt_ip_get(char **addr, apr_pool_t *pool);
APT_END_EXTERN_C
#endif /*__APT_NET_H__*/