]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/socket.h
Move file inclusion logic into calcdep, and complain about ambiguous #include directi...
[user/henk/code/inspircd.git] / include / socket.h
index a2b727499837245a5a6f72fb52dca25a469a719b..5935500180637128f0ad06c17aa771e3badfd693 100644 (file)
@@ -107,14 +107,14 @@ namespace irc
                 * @param sa The structure to place the result in. Will be zeroed prior to conversion
                 * @return true if the conversion was successful, false if not.
                 */
-               CoreExport int aptosa(const char* addr, int port, irc::sockets::sockaddrs* sa);
+               CoreExport bool aptosa(const char* addr, int port, irc::sockets::sockaddrs* sa);
                /** Convert a binary sockaddr to an address-port pair
                 * @param sa The structure to convert
                 * @param addr the IP address
                 * @param port the port
                 * @return true if the conversion was successful, false if unknown address family
                 */
-               CoreExport int satoap(const irc::sockets::sockaddrs* sa, std::string& addr, int &port);
+               CoreExport bool satoap(const irc::sockets::sockaddrs* sa, std::string& addr, int &port);
        }
 }