forked from pEp.foundation/webserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
467 B
22 lines
467 B
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace pEp
|
|
{
|
|
|
|
struct URL
|
|
{
|
|
std::string schema; // http/https. parse_url() returns it always in lowercase
|
|
std::string username;
|
|
std::string password;
|
|
std::string host;
|
|
unsigned port = 0; // port 0 means: default port: 80 for HTTP, 443 for HTTPS
|
|
std::string path_and_query = "/"; // no need to split them down anymore
|
|
std::string fragment;
|
|
};
|
|
|
|
URL parse_url(const char* begin, const char* end);
|
|
|
|
} // end of namespace pEp
|