Monero
Toggle main menu visibility
Loading...
Searching...
No Matches
src
net
parse.h
Go to the documentation of this file.
1
// Copyright (c) 2018-2022, The Monero Project
2
3
//
4
// All rights reserved.
5
//
6
// Redistribution and use in source and binary forms, with or without modification, are
7
// permitted provided that the following conditions are met:
8
//
9
// 1. Redistributions of source code must retain the above copyright notice, this list of
10
// conditions and the following disclaimer.
11
//
12
// 2. Redistributions in binary form must reproduce the above copyright notice, this list
13
// of conditions and the following disclaimer in the documentation and/or other
14
// materials provided with the distribution.
15
//
16
// 3. Neither the name of the copyright holder nor the names of its contributors may be
17
// used to endorse or promote products derived from this software without specific
18
// prior written permission.
19
//
20
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
21
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
22
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
23
// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
27
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
28
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
30
#pragma once
31
32
#include <boost/asio/ip/tcp.hpp>
33
#include <boost/optional/optional.hpp>
34
#include <boost/utility/string_ref.hpp>
35
#include <cstdint>
36
37
#include "
common/expect.h
"
38
#include "
net/fwd.h
"
39
#include "
net/net_utils_base.h
"
40
41
namespace
net
42
{
44
struct
scheme_and_authority
45
{
47
explicit
scheme_and_authority
(boost::string_ref
uri
);
48
49
std::string
scheme
;
50
std::string
authority
;
51
};
52
54
struct
userinfo_and_hostport
55
{
57
explicit
userinfo_and_hostport
(boost::string_ref authority);
58
59
std::string
userinfo
;
60
std::string
hostport
;
61
};
62
64
struct
user_and_pass
65
{
66
user_and_pass
()
67
:
user
(),
pass
()
68
{}
69
75
static
boost::optional<user_and_pass>
get
(boost::string_ref userinfo);
76
77
std::string
user
;
78
std::string
pass
;
79
};
80
82
struct
uri_components
83
{
84
uri_components
()
85
:
scheme
(),
userinfo
(),
hostport
()
86
{}
87
95
static
boost::optional<uri_components>
get
(boost::string_ref
uri
);
96
97
std::string
scheme
;
98
user_and_pass
userinfo
;
99
std::string
hostport
;
100
};
101
112
void
get_network_address_host_and_port
(
const
std::string&
address
, std::string& host, std::string& port);
113
126
expect<epee::net_utils::network_address>
127
get_network_address
(boost::string_ref
address
, std::uint16_t default_port);
128
139
expect<epee::net_utils::ipv4_network_subnet>
140
get_ipv4_subnet_address
(boost::string_ref
address
,
bool
allow_implicit_32 =
false
);
141
142
expect<boost::asio::ip::tcp::endpoint>
get_tcp_endpoint
(
const
boost::string_ref
address
);
143
144
namespace
socks
145
{
147
struct
endpoint
148
{
149
endpoint
();
150
explicit
endpoint
(
const
boost::asio::ip::tcp::endpoint&
address
);
151
153
static
expect<endpoint>
get
(boost::string_ref
uri
);
154
155
boost::asio::ip::tcp::endpoint
address
;
156
user_and_pass
userinfo
;
157
version
ver
;
158
};
159
}
160
}
expect
Definition
expect.h:134
expect.h
net::socks
Definition
fwd.h:45
net::socks::version
version
Supported socks variants.
Definition
socks.h:60
net
Definition
net_utils_base.h:59
net::get_network_address
expect< epee::net_utils::network_address > get_network_address(const boost::string_ref address, const std::uint16_t default_port)
Definition
parse.cpp:159
net::get_tcp_endpoint
expect< boost::asio::ip::tcp::endpoint > get_tcp_endpoint(const boost::string_ref address)
Definition
parse.cpp:225
net::get_network_address_host_and_port
void get_network_address_host_and_port(const std::string &address, std::string &host, std::string &port)
Takes a valid address string (IP, Tor, I2P, or DNS name) and splits it into host and port.
Definition
parse.cpp:131
net::get_ipv4_subnet_address
expect< epee::net_utils::ipv4_network_subnet > get_ipv4_subnet_address(const boost::string_ref address, bool allow_implicit_32)
Definition
parse.cpp:203
uri
Definition
uri.py:1
net_utils_base.h
address
static cryptonote::account_public_address address
Definition
signature.cpp:38
fwd.h
net::scheme_and_authority::scheme_and_authority
scheme_and_authority(boost::string_ref uri)
Definition
parse.cpp:61
net::scheme_and_authority::scheme
std::string scheme
Definition
parse.h:49
net::scheme_and_authority::authority
std::string authority
Definition
parse.h:50
net::socks::endpoint::userinfo
user_and_pass userinfo
Definition
parse.h:156
net::socks::endpoint::get
static expect< endpoint > get(boost::string_ref uri)
Definition
parse.cpp:270
net::socks::endpoint::endpoint
endpoint()
Definition
parse.cpp:262
net::socks::endpoint::address
boost::asio::ip::tcp::endpoint address
Definition
parse.h:155
net::socks::endpoint::ver
version ver
Definition
parse.h:157
net::uri_components::uri_components
uri_components()
Definition
parse.h:84
net::uri_components::scheme
std::string scheme
Definition
parse.h:97
net::uri_components::hostport
std::string hostport
Definition
parse.h:99
net::uri_components::userinfo
user_and_pass userinfo
Definition
parse.h:98
net::uri_components::get
static boost::optional< uri_components > get(boost::string_ref uri)
Definition
parse.cpp:116
net::user_and_pass
Separates the user and pass sections from URI userinfo.
Definition
parse.h:65
net::user_and_pass::get
static boost::optional< user_and_pass > get(boost::string_ref userinfo)
Definition
parse.cpp:93
net::user_and_pass::pass
std::string pass
Definition
parse.h:78
net::user_and_pass::user
std::string user
Definition
parse.h:77
net::user_and_pass::user_and_pass
user_and_pass()
Definition
parse.h:66
net::userinfo_and_hostport::userinfo
std::string userinfo
Definition
parse.h:59
net::userinfo_and_hostport::hostport
std::string hostport
Definition
parse.h:60
net::userinfo_and_hostport::userinfo_and_hostport
userinfo_and_hostport(boost::string_ref authority)
Definition
parse.cpp:78
Generated on
for Monero by
1.17.0