GNU libmicrohttpd  0.9.72
action_continue.c
Go to the documentation of this file.
1 /*
2  This file is part of libmicrohttpd
3  Copyright (C) 2007-2018 Daniel Pittman and Christian Grothoff
4 
5  This library is free software; you can redistribute it and/or
6  modify it under the terms of the GNU Lesser General Public
7  License as published by the Free Software Foundation; either
8  version 2.1 of the License, or (at your option) any later version.
9 
10  This library is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  Lesser General Public License for more details.
14 
15  You should have received a copy of the GNU Lesser General Public
16  License along with this library; if not, write to the Free Software
17  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19 
25 #include "internal.h"
26 
27 
36 static enum MHD_StatusCode
37 cont_action (void *cls,
38  struct MHD_Request *request)
39 {
40  (void) cls;
41  (void) request;
42  /* not sure yet, but this function body may
43  just legitimately stay empty... */
44  return MHD_SC_OK;
45 }
46 
47 
53 const struct MHD_Action *
55 {
56  static struct MHD_Action acont = {
57  .action = &cont_action,
58  .action_cls = NULL
59  };
60 
61  return &acont;
62 }
63 
64 
65 /* end of action_continue.c */
static enum MHD_StatusCode cont_action(void *cls, struct MHD_Request *request)
const struct MHD_Action * MHD_action_continue(void)
#define NULL
Definition: reason_phrase.c:30
internal shared structures
ActionCallback action
Definition: internal.h:1554