5cbda834bd
GitOrigin-RevId: 1369d3af1195221f6ddb9462d5f8b74fb5fef20f
36 lines
902 B
C++
36 lines
902 B
C++
//
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2018
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
#pragma once
|
|
|
|
#include "td/utils/common.h"
|
|
#include "td/utils/Slice.h"
|
|
#include "td/utils/Status.h"
|
|
#include "td/utils/StringBuilder.h"
|
|
|
|
namespace td {
|
|
|
|
class HttpUrl {
|
|
public:
|
|
enum class Protocol { HTTP, HTTPS } protocol_;
|
|
string userinfo_;
|
|
string host_;
|
|
bool is_ipv6;
|
|
int specified_port_;
|
|
int port_;
|
|
string query_;
|
|
|
|
string get_url() const;
|
|
};
|
|
|
|
// TODO Slice instead of MutableSlice
|
|
Result<HttpUrl> parse_url(MutableSlice url,
|
|
HttpUrl::Protocol default_protocol = HttpUrl::Protocol::HTTP) TD_WARN_UNUSED_RESULT;
|
|
|
|
StringBuilder &operator<<(StringBuilder &sb, const HttpUrl &url);
|
|
|
|
} // namespace td
|