From 266ceafa2659b6a8091c6c63f4065117180b9c6c Mon Sep 17 00:00:00 2001 From: Peter Thorson Date: Sun, 6 Jan 2013 08:49:55 -0600 Subject: [PATCH] connects interrupt's error handling --- websocketpp/endpoint.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/websocketpp/endpoint.hpp b/websocketpp/endpoint.hpp index a29bc159b9..24636004e7 100644 --- a/websocketpp/endpoint.hpp +++ b/websocketpp/endpoint.hpp @@ -122,9 +122,9 @@ public: } std::cout << "CALL con->interrupt() HERE!!" << std::endl; - //con->interrupt(); + ec = con->interrupt(); - ec = lib::error_code(); + //ec = lib::error_code(); } void interrupt(connection_hdl hdl) {