debian 9 unittest build fix

This commit is contained in:
Benjamin Sergeant 2019-03-10 16:07:48 -07:00
parent 03ca73658c
commit f2778c0729
2 changed files with 4 additions and 0 deletions

View File

@ -77,7 +77,10 @@ server.setOnConnectionCallback(
if (messageType == ix::WebSocket_MessageType_Open)
{
std::cerr << "New connection" << std::endl;
// The uri the client did connect to.
std::cerr << "Uri: " << openInfo.uri << std::endl;
std::cerr << "Headers:" << std::endl;
for (auto it : openInfo.headers)
{

View File

@ -18,6 +18,7 @@
#include "IXTest.h"
#include "catch.hpp"
#include <string.h>
using namespace ix;