1 /*
2 
3 Copyright (c) 2009-2018, Arvid Norberg
4 All rights reserved.
5 
6 Redistribution and use in source and binary forms, with or without
7 modification, are permitted provided that the following conditions
8 are met:
9 
10     * Redistributions of source code must retain the above copyright
11       notice, this list of conditions and the following disclaimer.
12     * Redistributions in binary form must reproduce the above copyright
13       notice, this list of conditions and the following disclaimer in
14       the documentation and/or other materials provided with the distribution.
15     * Neither the name of the author nor the names of its
16       contributors may be used to endorse or promote products derived
17       from this software without specific prior written permission.
18 
19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
23 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 POSSIBILITY OF SUCH DAMAGE.
30 
31 */
32 
33 #ifndef TORRENT_ADDRESS_HPP_INCLUDED
34 #define TORRENT_ADDRESS_HPP_INCLUDED
35 
36 #include <boost/version.hpp>
37 
38 #include "libtorrent/config.hpp"
39 #include "libtorrent/string_view.hpp"
40 
41 #if defined TORRENT_BUILD_SIMULATOR
42 #include "simulator/simulator.hpp"
43 #else
44 #include "libtorrent/aux_/disable_warnings_push.hpp"
45 #include <boost/asio/ip/address.hpp>
46 #include "libtorrent/aux_/disable_warnings_pop.hpp"
47 #endif // SIMULATOR
48 
49 namespace libtorrent {
50 
51 #if defined TORRENT_BUILD_SIMULATOR
52 	using sim::asio::ip::address;
53 	using sim::asio::ip::address_v4;
54 	using sim::asio::ip::address_v6;
55 #else
56 	using boost::asio::ip::address;
57 	using boost::asio::ip::address_v4;
58 	using boost::asio::ip::address_v6;
59 #endif // SIMULATOR
60 
61 // the from_string member functions are deprecated starting
62 // in boost 1.66.0
63 #if BOOST_VERSION >= 106600 && !defined TORRENT_BUILD_SIMULATOR
64 	using boost::asio::ip::make_address;
65 	using boost::asio::ip::make_address_v4;
66 	using boost::asio::ip::make_address_v6;
67 #else
68 	// internal
make_address(string_view str,boost::system::error_code & ec)69 	inline address make_address(string_view str, boost::system::error_code& ec)
70 	{ return address::from_string(str.data(), ec); }
71 	// internal
make_address_v4(string_view str,boost::system::error_code & ec)72 	inline address_v4 make_address_v4(string_view str, boost::system::error_code& ec)
73 	{ return address_v4::from_string(str.data(), ec); }
74 	// internal
make_address_v6(string_view str,boost::system::error_code & ec)75 	inline address_v6 make_address_v6(string_view str, boost::system::error_code& ec)
76 	{ return address_v6::from_string(str.data(), ec); }
77 	// internal
make_address(string_view str)78 	inline address make_address(string_view str)
79 	{ return address::from_string(str.data()); }
80 	// internal
make_address_v4(string_view str)81 	inline address_v4 make_address_v4(string_view str)
82 	{ return address_v4::from_string(str.data()); }
83 	// internal
make_address_v6(string_view str)84 	inline address_v6 make_address_v6(string_view str)
85 	{ return address_v6::from_string(str.data()); }
86 #endif
87 }
88 
89 #endif
90