summaryrefslogtreecommitdiffstats
path: root/src/server
diff options
context:
space:
mode:
Diffstat (limited to 'src/server')
-rw-r--r--src/server/ServerInterfaceImpl.hpp2
-rw-r--r--src/server/events/Get.cpp1
2 files changed, 1 insertions, 2 deletions
diff --git a/src/server/ServerInterfaceImpl.hpp b/src/server/ServerInterfaceImpl.hpp
index ef9042bf..0ba3a1b9 100644
--- a/src/server/ServerInterfaceImpl.hpp
+++ b/src/server/ServerInterfaceImpl.hpp
@@ -83,8 +83,6 @@ public:
virtual void disconnect_all(const Raul::Path& parent_patch_path,
const Raul::Path& path);
- virtual void ping();
-
virtual void get(const Raul::URI& uri);
virtual void response(int32_t id, Status status) {} ///< N/A
diff --git a/src/server/events/Get.cpp b/src/server/events/Get.cpp
index 404cd981..06e30a47 100644
--- a/src/server/events/Get.cpp
+++ b/src/server/events/Get.cpp
@@ -69,6 +69,7 @@ Get::post_process()
_engine.broadcaster()->send_plugins_to(_request_client, _plugins);
}
} else if (_uri == "ingen:engine") {
+ respond(SUCCESS);
// TODO: Keep a proper RDF model of the engine
if (_request_client) {
Shared::URIs& uris = *_engine.world()->uris().get();