simple_reply_fragment.c (304B)
1 struct MHD_Action * 2 simple_reply_to_request (struct MHD_Request *request) 3 { 4 const char *data = "<html><body><p>Error!</p></body></html>"; 5 6 return MHD_action_from_response ( 7 request, 8 MHD_response_from_buffer_static ( 9 MHD_HTTP_STATUS_NOT_FOUND, 10 strlen (data), 11 data); 12 ); 13 }