-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathsample-fcgi.c
75 lines (65 loc) · 2.11 KB
/
sample-fcgi.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
* Copyright (c) Kristaps Dzonsons <[email protected]>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <getopt.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include "kcgi.h"
int
main(void)
{
struct kreq r;
struct kfcgi *fcgi;
enum kcgi_err er;
/* Set up our FastCGI context. */
if (khttp_fcgi_init(&fcgi, NULL, 0, NULL, 0, 0) != KCGI_OK)
return 0;
for (;;) {
/* Set up the current HTTP context. */
er = khttp_fcgi_parse(fcgi, &r);
if (er == KCGI_EXIT)
fprintf(stderr, "khttp_fcgi_parse: terminate\n");
else if (er != KCGI_OK)
fprintf(stderr, "khttp_fcgi_parse: error: %d\n", er);
if (er != KCGI_OK)
break;
/*
* Accept only GET and OPTIONS. Start with CORS handling, which
* we'll allow to any origin. XXX: this ignores errors in
* handling, which is probably not what you want.
*/
if (r.reqmap[KREQU_ORIGIN] != NULL)
khttp_head(&r,
kresps[KRESP_ACCESS_CONTROL_ALLOW_ORIGIN],
"%s", r.reqmap[KREQU_ORIGIN]->val);
if (r.method == KMETHOD_OPTIONS) {
khttp_head(&r, kresps[KRESP_ALLOW], "OPTIONS, GET");
khttp_head(&r, kresps[KRESP_STATUS], "%s",
khttps[KHTTP_204]);
khttp_body(&r);
} else if (r.method == KMETHOD_GET) {
/* Inherit the MIME type. */
khttp_head(&r, kresps[KRESP_CONTENT_TYPE], "%s",
kmimetypes[r.mime]);
khttp_body(&r);
khttp_puts(&r, "Hello, world!\n");
}
khttp_free(&r);
}
khttp_fcgi_free(fcgi);
return 0;
}