exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

taler-auditor-httpd_mhd.h (2793B)


      1 /*
      2   This file is part of TALER
      3   Copyright (C) 2014 Taler Systems SA
      4 
      5   TALER 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   TALER 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   TALER; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
     15 */
     16 
     17 /**
     18  * @file taler-auditor-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 TALER_AUDITOR_HTTPD_MHD_H
     25 #define TALER_AUDITOR_HTTPD_MHD_H
     26 #include <gnunet/gnunet_util_lib.h>
     27 #include <microhttpd.h>
     28 #include "taler-auditor-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  * @param[in,out] connection_cls the connection's closure (can be updated)
     38  * @param upload_data upload data
     39  * @param[in,out] upload_data_size number of bytes (left) in @a upload_data
     40  * @param args NULL-terminated array of remaining parts of the URI broken up at '/'
     41  * @return MHD result code
     42  */
     43 MHD_RESULT
     44 TAH_MHD_handler_static_response (struct TAH_RequestHandler *rh,
     45                                  struct MHD_Connection *connection,
     46                                  void **connection_cls,
     47                                  const char *upload_data,
     48                                  size_t *upload_data_size,
     49                                  const char *const args[]);
     50 
     51 
     52 /**
     53  * Function to call to handle the request by sending
     54  * back a redirect to the AGPL source code.
     55  *
     56  * @param rh context of the handler
     57  * @param connection the MHD connection to handle
     58  * @param[in,out] connection_cls the connection's closure (can be updated)
     59  * @param upload_data upload data
     60  * @param[in,out] upload_data_size number of bytes (left) in @a upload_data
     61  * @param args NULL-terminated array of remaining parts of the URI broken up at '/'
     62  * @return MHD result code
     63  */
     64 MHD_RESULT
     65 TAH_MHD_handler_agpl_redirect (struct TAH_RequestHandler *rh,
     66                                struct MHD_Connection *connection,
     67                                void **connection_cls,
     68                                const char *upload_data,
     69                                size_t *upload_data_size,
     70                                const char *const args[]);
     71 
     72 
     73 #endif