move files around

This commit is contained in:
Benjamin Sergeant 2018-11-12 17:56:59 -08:00
parent 3a68bbd1b2
commit e847716076
8 changed files with 9 additions and 7 deletions

View File

@ -24,6 +24,7 @@ set( IXWEBSOCKET_HEADERS
ixwebsocket/IXSocket.h ixwebsocket/IXSocket.h
ixwebsocket/IXWebSocket.h ixwebsocket/IXWebSocket.h
ixwebsocket/IXWebSocketTransport.h ixwebsocket/IXWebSocketTransport.h
ixwebsocket/IXWebSocketSendInfo.h
ixwebsocket/IXWebSocketPerMessageDeflate.h ixwebsocket/IXWebSocketPerMessageDeflate.h
ixwebsocket/IXWebSocketPerMessageDeflateOptions.h ixwebsocket/IXWebSocketPerMessageDeflateOptions.h
ixwebsocket/IXWebSocketHttpHeaders.h ixwebsocket/IXWebSocketHttpHeaders.h

View File

@ -18,11 +18,12 @@ option(USE_TLS "Add TLS support" ON)
add_subdirectory(${PROJECT_SOURCE_DIR}/../.. ixwebsocket) add_subdirectory(${PROJECT_SOURCE_DIR}/../.. ixwebsocket)
include_directories(satori_publisher ${OPENSSL_PREFIX}/include) include_directories(satori_publisher ${OPENSSL_PREFIX}/include)
include_directories(satori_publisher .)
add_executable(satori_publisher add_executable(satori_publisher
base64.cpp
jsoncpp/jsoncpp.cpp jsoncpp/jsoncpp.cpp
IXHMac.cpp ixcrypto/IXHMac.cpp
ixcrypto/IXBase64.cpp
IXSatoriConnection.cpp IXSatoriConnection.cpp
satori_publisher.cpp) satori_publisher.cpp)

View File

@ -5,7 +5,7 @@
*/ */
#include "IXSatoriConnection.h" #include "IXSatoriConnection.h"
#include "IXHMac.h" #include <ixcrypto/IXHMac.h>
#include <algorithm> #include <algorithm>
#include <stdexcept> #include <stdexcept>
@ -13,7 +13,7 @@
#include <cassert> #include <cassert>
#include <cstring> #include <cstring>
namespace ix namespace
{ {
bool parseJson(const std::string& str, Json::Value& value) bool parseJson(const std::string& str, Json::Value& value)
{ {

View File

@ -12,7 +12,7 @@
#include <thread> #include <thread>
#include <unordered_map> #include <unordered_map>
#include "jsoncpp/json/json.h" #include <jsoncpp/json/json.h>
#include <ixwebsocket/IXWebSocket.h> #include <ixwebsocket/IXWebSocket.h>
#include <ixwebsocket/IXWebSocketPerMessageDeflateOptions.h> #include <ixwebsocket/IXWebSocketPerMessageDeflateOptions.h>

View File

@ -25,7 +25,7 @@
*/ */
#include "base64.h" #include "IXBase64.h"
namespace ix namespace ix
{ {

View File

@ -4,7 +4,7 @@
* Copyright (c) 2018 Machine Zone. All rights reserved. * Copyright (c) 2018 Machine Zone. All rights reserved.
*/ */
#include "IXHMac.h" #include "IXHMac.h"
#include "base64.h" #include "IXBase64.h"
#include <openssl/hmac.h> #include <openssl/hmac.h>