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