]> git.tdb.fi Git - libs/net.git/blob - source/resolve.h
Add function to check if handshake is done
[libs/net.git] / source / resolve.h
1 /* $Id$
2
3 This file is part of libmspnet
4 Copyright © 2008  Mikkosoft Productions, Mikko Rasa
5 Distributed under the LGPL
6 */
7
8 #ifndef MSP_NET_RESOLVE_H_
9 #define MSP_NET_RESOLVE_H_
10
11 #include <string>
12 #include "constants.h"
13
14 namespace Msp {
15 namespace Net {
16
17 class SockAddr;
18
19 SockAddr *resolve(const std::string &, Family =UNSPEC);
20
21 } // namespace Net
22 } // namespace Msp
23
24 #endif