From 119468f621a59d86da10bedf75c4427b70f9d370 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 16 Mar 2012 03:15:41 +0000 Subject: Remove activity from interface and use set_property() instead. Move client registration stuff to Engine and remove corresponding events. Simply response ID interface. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4066 a436a847-0d15-0410-975c-d299462d15a1 --- src/http/HTTPEngineSender.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/http/HTTPEngineSender.hpp') diff --git a/src/http/HTTPEngineSender.hpp b/src/http/HTTPEngineSender.hpp index c7296bcc..d9ac4481 100644 --- a/src/http/HTTPEngineSender.hpp +++ b/src/http/HTTPEngineSender.hpp @@ -59,8 +59,7 @@ public: inline int32_t next_id() { int32_t ret = (_id == -1) ? -1 : _id++; return ret; } - void respond_to(ClientInterface* client, int32_t id) { _id = id; } - void disable_responses() { _id = -1; } + void set_response_id(int32_t id) { _id = id; } void attach(int32_t ping_id, bool block); -- cgit v1.2.1