summaryrefslogtreecommitdiffstats
path: root/src/engine/HTTPClientSender.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/HTTPClientSender.cpp')
-rw-r--r--src/engine/HTTPClientSender.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/engine/HTTPClientSender.cpp b/src/engine/HTTPClientSender.cpp
index 7f92144f..412539b9 100644
--- a/src/engine/HTTPClientSender.cpp
+++ b/src/engine/HTTPClientSender.cpp
@@ -37,21 +37,18 @@ HTTPClientSender::response_ok(int32_t id)
{
}
-
void
HTTPClientSender::response_error(int32_t id, const std::string& msg)
{
warn << "HTTP Error " << id << " (" << msg << ")" << endl;
}
-
void
HTTPClientSender::error(const std::string& msg)
{
warn << "HTTP send error " << msg << endl;
}
-
void
HTTPClientSender::put(const URI& uri,
const Resource::Properties& properties,
@@ -71,7 +68,6 @@ HTTPClientSender::put(const URI& uri,
send_chunk(str);
}
-
void
HTTPClientSender::delta(const URI& uri,
const Resource::Properties& remove,
@@ -79,7 +75,6 @@ HTTPClientSender::delta(const URI& uri,
{
}
-
void
HTTPClientSender::del(const Path& path)
{
@@ -87,7 +82,6 @@ HTTPClientSender::del(const Path& path)
send_chunk(string("<").append(path.str()).append("> a <http://www.w3.org/2002/07/owl#Nothing> ."));
}
-
void
HTTPClientSender::connect(const Path& src_path, const Path& dst_path)
{
@@ -100,14 +94,12 @@ HTTPClientSender::connect(const Path& src_path, const Path& dst_path)
send_chunk(msg);
}
-
void
HTTPClientSender::disconnect(const Path& src_path, const Path& dst_path)
{
//send("/ingen/disconnection", "ss", src_path.c_str(), dst_path.c_str(), LO_ARGS_END);
}
-
void
HTTPClientSender::set_property(const URI& subject, const URI& key, const Atom& value)
{
@@ -124,7 +116,6 @@ HTTPClientSender::set_property(const URI& subject, const URI& key, const Atom& v
#endif
}
-
void
HTTPClientSender::activity(const Path& path)
{
@@ -134,7 +125,6 @@ HTTPClientSender::activity(const Path& path)
send_chunk(msg);
}
-
void
HTTPClientSender::move(const Path& old_path, const Path& new_path)
{
@@ -145,5 +135,4 @@ HTTPClientSender::move(const Path& old_path, const Path& new_path)
send_chunk(msg);
}
-
} // namespace Ingen