f84bc53c8d
* Stub code for http server * can send a response, cannot process body yet * write headers to the response * remove commented code * add simple test + set default http handler * tweak CI + unittest * add missing file * rewrite http::trim in a simple way * doc
99 lines
4.1 KiB
C++
99 lines
4.1 KiB
C++
/*
|
|
* 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);
|
|
|
|
int ws_echo_server_main(int port, bool greetings, const std::string& hostname);
|
|
int ws_broadcast_server_main(int port, const std::string& hostname);
|
|
int ws_transfer_main(int port, const std::string& hostname);
|
|
|
|
int ws_chat_main(const std::string& url, const std::string& user);
|
|
|
|
int ws_connect_main(const std::string& url,
|
|
bool disableAutomaticReconnection,
|
|
bool disablePerMessageDeflate);
|
|
|
|
int ws_receive_main(const std::string& url, bool enablePerMessageDeflate, int delayMs);
|
|
|
|
int ws_send_main(const std::string& url, const std::string& path);
|
|
|
|
int ws_redis_publish_main(const std::string& hostname,
|
|
int port,
|
|
const std::string& password,
|
|
const std::string& channel,
|
|
const std::string& message,
|
|
int count);
|
|
|
|
int ws_redis_subscribe_main(const std::string& hostname,
|
|
int port,
|
|
const std::string& password,
|
|
const std::string& channel,
|
|
bool verbose);
|
|
|
|
int ws_cobra_subscribe_main(const std::string& appkey,
|
|
const std::string& endpoint,
|
|
const std::string& rolename,
|
|
const std::string& rolesecret,
|
|
const std::string& channel);
|
|
|
|
int ws_cobra_publish_main(const std::string& appkey,
|
|
const std::string& endpoint,
|
|
const std::string& rolename,
|
|
const std::string& rolesecret,
|
|
const std::string& channel,
|
|
const std::string& path,
|
|
bool stress);
|
|
|
|
int ws_cobra_to_statsd_main(const std::string& appkey,
|
|
const std::string& endpoint,
|
|
const std::string& rolename,
|
|
const std::string& rolesecret,
|
|
const std::string& channel,
|
|
const std::string& host,
|
|
int port,
|
|
const std::string& prefix,
|
|
const std::string& fields,
|
|
bool verbose);
|
|
|
|
int ws_cobra_to_sentry_main(const std::string& appkey,
|
|
const std::string& endpoint,
|
|
const std::string& rolename,
|
|
const std::string& rolesecret,
|
|
const std::string& channel,
|
|
const std::string& dsn,
|
|
bool verbose,
|
|
bool strict,
|
|
int jobs);
|
|
|
|
int ws_snake_main(int port,
|
|
const std::string& hostname,
|
|
const std::string& redisHosts,
|
|
int redisPort,
|
|
const std::string& redisPassword,
|
|
bool verbose,
|
|
const std::string& appsConfigPath);
|
|
|
|
int ws_httpd_main(int port, const std::string& hostname);
|
|
} // namespace ix
|