Monero
Loading...
Searching...
No Matches
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
41namespace net
42{
45 {
47 explicit scheme_and_authority(boost::string_ref uri);
48
49 std::string scheme;
50 std::string authority;
51 };
52
55 {
57 explicit userinfo_and_hostport(boost::string_ref authority);
58
59 std::string userinfo;
60 std::string hostport;
61 };
62
65 {
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
83 {
85 : scheme(), userinfo(), hostport()
86 {}
87
95 static boost::optional<uri_components> get(boost::string_ref uri);
96
97 std::string scheme;
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
127 get_network_address(boost::string_ref address, std::uint16_t default_port);
128
140 get_ipv4_subnet_address(boost::string_ref address, bool allow_implicit_32 = false);
141
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;
158 };
159 }
160}
Definition expect.h:134
Definition fwd.h:45
version
Supported socks variants.
Definition socks.h:60
Definition net_utils_base.h:59
expect< epee::net_utils::network_address > get_network_address(const boost::string_ref address, const std::uint16_t default_port)
Definition parse.cpp:159
expect< boost::asio::ip::tcp::endpoint > get_tcp_endpoint(const boost::string_ref address)
Definition parse.cpp:225
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
expect< epee::net_utils::ipv4_network_subnet > get_ipv4_subnet_address(const boost::string_ref address, bool allow_implicit_32)
Definition parse.cpp:203
Definition uri.py:1
static cryptonote::account_public_address address
Definition signature.cpp:38
scheme_and_authority(boost::string_ref uri)
Definition parse.cpp:61
std::string scheme
Definition parse.h:49
std::string authority
Definition parse.h:50
user_and_pass userinfo
Definition parse.h:156
static expect< endpoint > get(boost::string_ref uri)
Definition parse.cpp:270
endpoint()
Definition parse.cpp:262
boost::asio::ip::tcp::endpoint address
Definition parse.h:155
version ver
Definition parse.h:157
uri_components()
Definition parse.h:84
std::string scheme
Definition parse.h:97
std::string hostport
Definition parse.h:99
user_and_pass userinfo
Definition parse.h:98
static boost::optional< uri_components > get(boost::string_ref uri)
Definition parse.cpp:116
Separates the user and pass sections from URI userinfo.
Definition parse.h:65
static boost::optional< user_and_pass > get(boost::string_ref userinfo)
Definition parse.cpp:93
std::string pass
Definition parse.h:78
std::string user
Definition parse.h:77
user_and_pass()
Definition parse.h:66
std::string userinfo
Definition parse.h:59
std::string hostport
Definition parse.h:60
userinfo_and_hostport(boost::string_ref authority)
Definition parse.cpp:78