/* * IXWebSocketProxyServer.h * Author: Benjamin Sergeant * Copyright (c) 2019-2020 Machine Zone, Inc. All rights reserved. */ #pragma once #include "IXSocketTLSOptions.h" #include #include #include #include namespace ix { using RemoteUrlsMapping = std::map; 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