2018-11-10 03:23:49 +01:00
|
|
|
/*
|
|
|
|
* IXWebSocketHttpHeaders.h
|
|
|
|
* Author: Benjamin Sergeant
|
|
|
|
* Copyright (c) 2018 Machine Zone, Inc. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <unordered_map>
|
|
|
|
|
2019-02-21 03:59:07 +01:00
|
|
|
namespace ix
|
2018-11-10 03:23:49 +01:00
|
|
|
{
|
|
|
|
using WebSocketHttpHeaders = std::unordered_map<std::string, std::string>;
|
|
|
|
}
|