// ********************************************************************** // // Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. // // ********************************************************************** #ifndef ICE_BT_UTIL_H #define ICE_BT_UTIL_H #include #include #include namespace IceBT { bool isValidDeviceAddress(const std::string&); bool parseDeviceAddress(const std::string&, DeviceAddress&); std::string formatDeviceAddress(const DeviceAddress&); std::string addrToString(const std::string&, Ice::Int); std::string addrToString(const SocketAddress&); SocketAddress createAddr(const std::string&, Ice::Int); std::string fdToString(SOCKET); void fdToAddressAndChannel(SOCKET, std::string&, int&, std::string&, int&); int compareAddress(const SocketAddress&, const SocketAddress&); } #endif