aboutsummaryrefslogtreecommitdiffstats
path: root/http_connection.h
diff options
context:
space:
mode:
authoripknHama <ipknhama@gmail.com>2014-04-27 02:19:59 +0900
committeripknHama <ipknhama@gmail.com>2014-04-27 03:16:00 +0900
commitf8893eb138eae88f35ba752221a02b318d275364 (patch)
tree9ffcd76c289bc8a9f7b21a4dd16c1ba434ed891e /http_connection.h
parent8eceb3f7ccc3dc57263c7ed2529493d831d59f61 (diff)
downloadcrow-f8893eb138eae88f35ba752221a02b318d275364.tar.gz
crow-f8893eb138eae88f35ba752221a02b318d275364.zip
rename flask to crow
Diffstat (limited to 'http_connection.h')
-rw-r--r--http_connection.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/http_connection.h b/http_connection.h
index d486d01..4456bb1 100644
--- a/http_connection.h
+++ b/http_connection.h
@@ -11,7 +11,7 @@
#include "http_response.h"
#include "datetime.h"
-namespace flask
+namespace crow
{
using namespace boost;
using tcp = asio::ip::tcp;
@@ -68,7 +68,7 @@ namespace flask
res = handler_->handle(req);
-#ifdef FLASK_ENABLE_LOGGING
+#ifdef CROW_ENABLE_LOGGING
std::cerr << "HTTP/" << parser_.http_major << "." << parser_.http_minor << ' ';
std::cerr << method_name(req.method);
std::cerr << " " << res.code << std::endl;