Move httpd port into config.h
[blerg.git] / http / canned_responses.h
1 /* Blerg is (C) 2011 The Dominion of Awesome, and is distributed under a
2  * BSD-style license.  Please see the COPYING file for details.
3  */
4 #ifndef _CANNED_RESPONSES
5 #define _CANNED_RESPONSES
6
7 struct MHD_Response *response_401;
8 struct MHD_Response *response_404;
9 struct MHD_Response *response_405;
10 struct MHD_Response *response_JSON_Success;
11 struct MHD_Response *response_JSON_Failure;
12
13 void init_responses();
14
15 #endif /* _CANNED_RESPONSES */