Return the status of token removal in auth_logout
[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_403;
9 struct MHD_Response *response_404;
10 struct MHD_Response *response_405;
11 struct MHD_Response *response_JSON_Success;
12 struct MHD_Response *response_JSON_Failure;
13
14 void init_responses();
15
16 #endif /* _CANNED_RESPONSES */