NASFAQ/nasfaq/connections/ws/http_handshake.h

20 lines
286 B
C
Raw Normal View History

2022-05-07 14:49:43 +00:00
#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