GNU libmicrohttpd
0.9.77
Loading...
Searching...
No Matches
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
*
54
MHD_action_continue
(
void
)
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 */
cont_action
static enum MHD_StatusCode cont_action(void *cls, struct MHD_Request *request)
Definition
action_continue.c:37
MHD_action_continue
const struct MHD_Action * MHD_action_continue(void)
Definition
action_continue.c:54
NULL
#define NULL
Definition
reason_phrase.c:30
internal.h
MHD internal shared structures.
MHD_Action
Definition
internal.h:1549
MHD_Action::action
ActionCallback action
Definition
internal.h:1554
MHD_Request
Definition
internal.h:367
src
lib
action_continue.c
Generated by
1.9.7