aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar jcgregorio <jcgregorio@google.com>2016-01-27 12:15:38 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2016-01-27 12:15:38 -0800
commit9ce4110a29b02ae3b95903cfbe0e61f31143e66e (patch)
tree01f7d4eeeba74fb7675fda15e98f22502e940258 /tools
parent553431240b466070aa9937ddfccaba55006af755 (diff)
skiaserve: Enable /cmd endpoint.
Diffstat (limited to 'tools')
-rw-r--r--tools/skiaserve/skiaserve.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/skiaserve/skiaserve.cpp b/tools/skiaserve/skiaserve.cpp
index 20f5b446c6..b615d443c8 100644
--- a/tools/skiaserve/skiaserve.cpp
+++ b/tools/skiaserve/skiaserve.cpp
@@ -246,7 +246,7 @@ public:
fHandlers.push_back({MHD_HTTP_METHOD_GET, "/", rootHandler});
fHandlers.push_back({MHD_HTTP_METHOD_POST, "/new", postHandler});
fHandlers.push_back({MHD_HTTP_METHOD_GET, "/img", imgHandler});
- //fHandlers.push_back({MHD_HTTP_METHOD_GET, "/cmd", infoHandler});
+ fHandlers.push_back({MHD_HTTP_METHOD_GET, "/cmd", infoHandler});
}
// This is clearly not efficient for a large number of urls and handlers