blob: 346f9f4f63c89c77851b78b1776c919588efbb1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/*
* (C) 2019 Nuno Goncalves <nunojpg@gmail.com>
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_URI_H_
#define BOTAN_URI_H_
#include <cstdint>
#include <string>
#include <botan/build.h>
namespace Botan {
struct BOTAN_TEST_API URI
{
enum class Type : uint8_t
{
NotSet,
IPv4,
IPv6,
Domain,
};
static URI fromAny(const std::string& uri);
static URI fromIPv4(const std::string& uri);
static URI fromIPv6(const std::string& uri);
static URI fromDomain(const std::string& uri);
URI() = default;
URI(Type xtype, const std::string& xhost, unsigned short xport)
: type { xtype }
, host { xhost }
, port { xport }
{}
bool operator==(const URI& a) const
{
return type == a.type && host == a.host && port == a.port;
}
std::string to_string() const;
const Type type{Type::NotSet};
const std::string host{};
const uint16_t port{};
};
}
#endif
|