NASFAQ/connections/ws/http_handshake.h
2022-05-07 17:02:21 +02:00

20 lines
286 B
C++

#ifndef _HTTP_HANDSHAKE_H_
#define _HTTP_HANDSHAKE_H_
#include <iostream>
#include <stdio.h>
#include <string.h>
#include <curl/curl.h>
#include <nlohmann/json.hpp>
#include "../http/http_connector.h"
namespace ws {
namespace http_handshake {
std::string get_sid();
}
}
#endif