You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/*
* IXWebSocketProxyServer.h * Author: Benjamin Sergeant * Copyright (c) 2019-2020 Machine Zone, Inc. All rights reserved. */ #pragma once
#include "IXSocketTLSOptions.h"
#include <cstdint>
#include <map>
#include <stddef.h>
#include <string>
namespace ix { using RemoteUrlsMapping = std::map<std::string, std::string>;
int websocket_proxy_server_main(int port, const std::string& hostname, const ix::SocketTLSOptions& tlsOptions, const std::string& remoteUrl, const RemoteUrlsMapping& remoteUrlsMapping, bool verbose); } // namespace ix
|