anastasis

Credential backup and recovery protocol and service
Log | Files | Refs | Submodules | README | LICENSE

anastasis-httpd_mhd.h (1801B)


      1 /*
      2   This file is part of Anastasis
      3   Copyright (C) 2014, 2015 Anastasis SARL
      4 
      5   Anastasis is free software; you can redistribute it and/or modify it under the
      6   terms of the GNU Affero General Public License as published by the Free Software
      7   Foundation; either version 3, or (at your option) any later version.
      8 
      9   Anastasis is distributed in the hope that it will be useful, but WITHOUT ANY
     10   WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
     11   A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more details.
     12 
     13   You should have received a copy of the GNU Affero General Public License along with
     14   Anastasis; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
     15 */
     16 
     17 /**
     18  * @file anastasis-httpd_mhd.h
     19  * @brief helpers for MHD interaction, used to generate simple responses
     20  * @author Florian Dold
     21  * @author Benedikt Mueller
     22  * @author Christian Grothoff
     23  */
     24 #ifndef ANASTASIS_HTTPD_MHD_H
     25 #define ANASTASIS_HTTPD_MHD_H
     26 #include <gnunet/gnunet_util_lib.h>
     27 #include <microhttpd.h>
     28 #include "anastasis-httpd.h"
     29 
     30 
     31 /**
     32  * Function to call to handle the request by sending
     33  * back static data from the @a rh.
     34  *
     35  * @param rh context of the handler
     36  * @param connection the MHD connection to handle
     37  * @return MHD result code
     38  */
     39 MHD_RESULT
     40 TMH_MHD_handler_static_response (struct AH_RequestHandler *rh,
     41                                  struct MHD_Connection *connection);
     42 
     43 
     44 /**
     45  * Function to call to handle the request by sending
     46  * back a redirect to the AGPL source code.
     47  *
     48  * @param rh context of the handler
     49  * @param connection the MHD connection to handle
     50  * @return MHD result code
     51  */
     52 MHD_RESULT
     53 TMH_MHD_handler_agpl_redirect (struct AH_RequestHandler *rh,
     54                                struct MHD_Connection *connection);
     55 
     56 
     57 #endif