aboutsummaryrefslogtreecommitdiff
path: root/src/output/HttpdClient.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-27 23:23:46 +0100
committerMax Kellermann <max@duempel.org>2013-01-27 23:23:46 +0100
commit2aa34882b7aef2b029df2acbbb17f742eb5fefaa (patch)
tree1b92ecb4125f73e9f1fceed436b065cb3a180304 /src/output/HttpdClient.cxx
parent27f8ef2f338440f0d4d258f0f2dfc3ca88e83ab2 (diff)
output/httpd: move functions into the HttpdOutput class
Diffstat (limited to 'src/output/HttpdClient.cxx')
-rw-r--r--src/output/HttpdClient.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/output/HttpdClient.cxx b/src/output/HttpdClient.cxx
index 6b1b9c50..0d0e3c94 100644
--- a/src/output/HttpdClient.cxx
+++ b/src/output/HttpdClient.cxx
@@ -55,7 +55,7 @@ HttpdClient::~HttpdClient()
void
HttpdClient::Close()
{
- httpd_output_remove_client(httpd, this);
+ httpd->RemoveClient(*this);
}
void
@@ -74,7 +74,7 @@ HttpdClient::BeginResponse()
write_source_id = 0;
current_page = nullptr;
- httpd_output_send_header(httpd, this);
+ httpd->SendHeader(*this);
}
/**