X-Git-Url: http://git.bytex64.net/?a=blobdiff_plain;f=http%2Fcanned_responses.c;h=ee26799301ca026de4a970701d19eb04e4c6eb69;hb=bfc01c15f56c58cefc8680f7faed4c5e3650fa38;hp=c61e2a763f844f4a9a3b3d1a10699adcb4b7b3b0;hpb=1cf0f1ebfbd5b5a621af2a49ac0328fd0cec4bf4;p=blerg.git diff --git a/http/canned_responses.c b/http/canned_responses.c index c61e2a7..ee26799 100644 --- a/http/canned_responses.c +++ b/http/canned_responses.c @@ -1,22 +1,16 @@ +/* Blerg is (C) 2011 The Dominion of Awesome, and is distributed under a + * BSD-style license. Please see the COPYING file for details. + */ #include #include -#include "http.h" +#include "app.h" #include "canned_responses.h" void init_responses() { -#define CONTENT_401 "401 Unauthorized

401 Unauthorized

DENIED" response_401 = MHD_create_response_from_data(strlen (CONTENT_401), CONTENT_401, MHD_NO, MHD_NO); - -#define CONTENT_404 "404 Not Found

404 Not Found

I couldn't find that." response_404 = MHD_create_response_from_data(strlen(CONTENT_404), CONTENT_404, MHD_NO, MHD_NO); - -#define CONTENT_405 "405 Method Not Allowed

405 Method Not Allowed

I'm sorry, Dave. I'm afraid I can't do that." response_405 = MHD_create_response_from_data(strlen(CONTENT_405), CONTENT_405, MHD_NO, MHD_NO); - -#define JSON_SUCCESS "{status: \"success\"}" response_JSON_Success = MHD_create_response_from_data(strlen(JSON_SUCCESS), JSON_SUCCESS, MHD_NO, MHD_NO); - -#define JSON_FAILURE "{status: \"failure\"}" response_JSON_Failure = MHD_create_response_from_data(strlen(JSON_FAILURE), JSON_FAILURE, MHD_NO, MHD_NO); }