mirror of
https://github.com/nomoresat/DPITunnel-cli.git
synced 2025-04-16 10:47:44 +02:00
11 lines
279 B
C++
11 lines
279 B
C++
#ifndef PACKET_H
|
|
#define PACKET_H
|
|
|
|
#include <string>
|
|
|
|
int parse_request(const std::string &request, std::string &method, std::string &host, int &port,
|
|
bool is_proxy);
|
|
|
|
void remove_proxy_strings(std::string &request, unsigned int &last_char);
|
|
|
|
#endif //PACKET_H
|