can GET some pages

This commit is contained in:
Benjamin Sergeant
2019-02-14 20:11:42 -08:00
parent 29c96f287f
commit 0b7c3ec235
11 changed files with 399 additions and 183 deletions

21
ixwebsocket/IXUrlParser.h Normal file
View File

@ -0,0 +1,21 @@
/*
* IXUrlParser.h
* Author: Benjamin Sergeant
* Copyright (c) 2019 Machine Zone, Inc. All rights reserved.
*/
#pragma once
#include <string>
namespace ix
{
bool parseUrl(const std::string& url,
std::string& protocol,
std::string& host,
std::string& path,
std::string& query,
int& port);
void printUrl(const std::string& url);
}