/* * Copyright (c) 2014-2016, dennis wang * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef ADDRESS_API_H #define ADDRESS_API_H #include "config.h" /** * @defgroup address 地址 * 地址 * *
 * 地址接口通过knet_channel_ref_get_local_address或knet_channel_ref_get_peer_address
 * 获取本地或对端的地址,未建立连接的管道也可以获取地址,但获取的地址是无效的.
 * 
* @sa knet_channel_ref_get_local_address * @sa knet_channel_ref_get_peer_address * @{ */ /** * 取得IP * @param address kaddress_t实例 * @retval 有效的指针 IP字符串 * @retval 0 管道连接未建立 */ FuncExport const char* address_get_ip(kaddress_t* address); /** * 取得port * @param address kaddress_t实例 * @retval 有效的端口号 端口号 * @retval 0 管道连接未建立 */ FuncExport int address_get_port(kaddress_t* address); /** * 测试是否相等 * @param address kaddress_t实例 * @param ip IP * @param port 端口 * @retval 0 相等 * @retval 非零 不相等 */ FuncExport int address_equal(kaddress_t* address, const char* ip, int port); /** @} */ #endif /* ADDRESS_API_H */