From 780f7683a4f542b53f28bfa089560d9d6be94ed0 Mon Sep 17 00:00:00 2001 From: Peter Thorson Date: Sat, 25 Jan 2014 18:29:54 -0600 Subject: [PATCH] add typedefs for iostream clients and servers to integration test suite --- test/transport/integration.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/transport/integration.cpp b/test/transport/integration.cpp index d8ebcce331..d422aabfe8 100644 --- a/test/transport/integration.cpp +++ b/test/transport/integration.cpp @@ -30,6 +30,8 @@ #include +#include +#include #include #include #include @@ -80,6 +82,9 @@ struct config : public websocketpp::config::asio_client { typedef websocketpp::server server; typedef websocketpp::client client; +typedef websocketpp::server iostream_server; +typedef websocketpp::client iostream_client; + using websocketpp::lib::placeholders::_1; using websocketpp::lib::placeholders::_2; using websocketpp::lib::bind;