From f33e8148fc6e214886a8b24fc9d743ee25da7d61 Mon Sep 17 00:00:00 2001 From: Stefan Radomski Date: Sat, 16 Nov 2013 01:44:21 +0100 Subject: Renamed nonsense curlReq to evhttpReq --- src/uscxml/plugins/invoker/http/HTTPServletInvoker.cpp | 4 ++-- src/uscxml/plugins/invoker/xhtml/XHTMLInvoker.cpp | 8 ++++---- src/uscxml/plugins/ioprocessor/basichttp/BasicHTTPIOProcessor.cpp | 2 +- src/uscxml/plugins/ioprocessor/comet/CometIOProcessor.cpp | 2 +- test/src/scxml-test-framework-client.cpp | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/uscxml/plugins/invoker/http/HTTPServletInvoker.cpp b/src/uscxml/plugins/invoker/http/HTTPServletInvoker.cpp index d259e9a..1e0fced 100644 --- a/src/uscxml/plugins/invoker/http/HTTPServletInvoker.cpp +++ b/src/uscxml/plugins/invoker/http/HTTPServletInvoker.cpp @@ -119,12 +119,12 @@ bool HTTPServletInvoker::httpRecvRequest(const HTTPServer::Request& req) { // evhttp_request_own(req.curlReq); - _requests[toStr((uintptr_t)req.curlReq)] = req; + _requests[toStr((uintptr_t)req.evhttpReq)] = req; Event event = req; event.name = _callback; - event.data.compound["reqId"] = Data(toStr((uintptr_t)req.curlReq), Data::VERBATIM); + event.data.compound["reqId"] = Data(toStr((uintptr_t)req.evhttpReq), Data::VERBATIM); returnEvent(event); return true; diff --git a/src/uscxml/plugins/invoker/xhtml/XHTMLInvoker.cpp b/src/uscxml/plugins/invoker/xhtml/XHTMLInvoker.cpp index c0a0a07..d4355b5 100644 --- a/src/uscxml/plugins/invoker/xhtml/XHTMLInvoker.cpp +++ b/src/uscxml/plugins/invoker/xhtml/XHTMLInvoker.cpp @@ -69,8 +69,8 @@ bool XHTMLInvoker::httpRecvRequest(const HTTPServer::Request& req) { if (iequals(req.data["type"].atom, "get")) { // the long-polling GET if (_longPoll) { - evhttp_send_error(_longPoll.curlReq, 204, NULL); - _longPoll.curlReq = NULL; + evhttp_send_error(_longPoll.evhttpReq, 204, NULL); + _longPoll.evhttpReq = NULL; } _longPoll = req; if (!_outQueue.empty()) { @@ -141,7 +141,7 @@ bool XHTMLInvoker::httpRecvRequest(const HTTPServer::Request& req) { HTTPServer::reply(reply); // queue invoke request for initial html - _longPoll.curlReq = NULL; + _longPoll.evhttpReq = NULL; _outQueue = std::deque(); SendRequest sendReq(_invokeReq); send(sendReq); @@ -172,7 +172,7 @@ void XHTMLInvoker::send(const SendRequest& req) { return; } reply(reqCopy, _longPoll); - _longPoll.curlReq = NULL; + _longPoll.evhttpReq = NULL; } void XHTMLInvoker::reply(const SendRequest& req, const HTTPServer::Request& longPoll) { diff --git a/src/uscxml/plugins/ioprocessor/basichttp/BasicHTTPIOProcessor.cpp b/src/uscxml/plugins/ioprocessor/basichttp/BasicHTTPIOProcessor.cpp index 2edb8ba..6632dc1 100644 --- a/src/uscxml/plugins/ioprocessor/basichttp/BasicHTTPIOProcessor.cpp +++ b/src/uscxml/plugins/ioprocessor/basichttp/BasicHTTPIOProcessor.cpp @@ -104,7 +104,7 @@ bool BasicHTTPIOProcessor::httpRecvRequest(const HTTPServer::Request& req) { reqEvent.name = "http." + req.data.compound.at("type").atom; returnEvent(reqEvent); - evhttp_send_reply(req.curlReq, 200, "OK", NULL); + evhttp_send_reply(req.evhttpReq, 200, "OK", NULL); return true; } diff --git a/src/uscxml/plugins/ioprocessor/comet/CometIOProcessor.cpp b/src/uscxml/plugins/ioprocessor/comet/CometIOProcessor.cpp index 5633f0e..32052c7 100644 --- a/src/uscxml/plugins/ioprocessor/comet/CometIOProcessor.cpp +++ b/src/uscxml/plugins/ioprocessor/comet/CometIOProcessor.cpp @@ -101,7 +101,7 @@ bool CometIOProcessor::httpRecvRequest(const HTTPServer::Request& request) { if (_longPollingReq) // send 204 to last request and remember new one - evhttp_send_error(_longPollingReq.curlReq, 204, NULL); + evhttp_send_error(_longPollingReq.evhttpReq, 204, NULL); _longPollingReq = request; if (!_outQueue.empty()) { send(_outQueue.front()); diff --git a/test/src/scxml-test-framework-client.cpp b/test/src/scxml-test-framework-client.cpp index 7b4db5c..d6ffd96 100644 --- a/test/src/scxml-test-framework-client.cpp +++ b/test/src/scxml-test-framework-client.cpp @@ -35,7 +35,7 @@ public: } virtual void afterCompletion(uscxml::Interpreter interpreter) { - _interpreters[interpreter.getName()].second.curlReq = NULL; + _interpreters[interpreter.getName()].second.evhttpReq = NULL; } virtual void beforeMicroStep(uscxml::Interpreter interpreter) {} virtual void beforeTakingTransitions(uscxml::Interpreter interpreter, const Arabica::XPath::NodeSet& transitions) {} -- cgit v0.12