2019-03-01 06:54:03 +01:00
|
|
|
/*
|
|
|
|
* ws.h
|
|
|
|
* Author: Benjamin Sergeant
|
|
|
|
* Copyright (c) 2019 Machine Zone, Inc. All rights reserved.
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace ix
|
|
|
|
{
|
|
|
|
int ws_http_client_main(const std::string& url,
|
|
|
|
const std::string& headers,
|
|
|
|
const std::string& data,
|
|
|
|
bool headersOnly,
|
|
|
|
int connectTimeout,
|
|
|
|
int transferTimeout,
|
|
|
|
bool followRedirects,
|
|
|
|
int maxRedirects,
|
|
|
|
bool verbose,
|
|
|
|
bool save,
|
|
|
|
const std::string& output,
|
|
|
|
bool compress);
|
|
|
|
|
|
|
|
int ws_ping_pong_main(const std::string& url);
|
|
|
|
|
2019-03-14 07:09:45 +01:00
|
|
|
int ws_echo_server_main(int port, const std::string& hostname);
|
2019-03-11 00:36:44 +01:00
|
|
|
int ws_broadcast_server_main(int port, const std::string& hostname);
|
2019-03-14 07:09:45 +01:00
|
|
|
int ws_transfer_main(int port, const std::string& hostname);
|
2019-03-01 06:54:03 +01:00
|
|
|
|
|
|
|
int ws_chat_main(const std::string& url,
|
|
|
|
const std::string& user);
|
|
|
|
|
|
|
|
int ws_connect_main(const std::string& url);
|
|
|
|
|
|
|
|
int ws_receive_main(const std::string& url,
|
2019-03-18 22:25:27 +01:00
|
|
|
bool enablePerMessageDeflate,
|
|
|
|
int delayMs);
|
2019-03-01 06:54:03 +01:00
|
|
|
|
|
|
|
int ws_send_main(const std::string& url,
|
|
|
|
const std::string& path);
|
|
|
|
}
|