NASFAQ/nasfaq/connections/ws/my_ssl.h

24 lines
429 B
C
Raw Normal View History

2022-02-17 15:15:31 +00:00
#ifndef _MY_SSL_H_
#define _MY_SSL_H_
2022-02-18 09:24:24 +00:00
#include <iostream>
#include <string>
#include <stdlib.h>
#include <websocketpp/config/asio_client.hpp>
#include <websocketpp/client.hpp>
#include <websocketpp/common/thread.hpp>
#include <websocketpp/common/memory.hpp>
#include <nlohmann/json.hpp>
#include "../parser/parser.h"
#include "../common/common.h"
#include "../safe_queue/safe_queue.h"
2022-02-17 15:15:31 +00:00
int connect_ws(std::string);
#endif