kopia lustrzana https://github.com/jameshball/osci-render
25 wiersze
737 B
C++
25 wiersze
737 B
C++
/*
|
|
* 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
|