chiark / gitweb /
Restore breadcrumb trail to choose.tmpl
[disorder] / server / cgi.c
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder.
5aff007d 3 * Copyright (C) 2004-2008 Richard Kettlewell
460b9539 4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 * USA
19 */
20
21#include <config.h>
22#include "types.h"
23
24#include <string.h>
25#include <stdio.h>
26#include <unistd.h>
27#include <stdlib.h>
28#include <errno.h>
29#include <sys/stat.h>
30#include <stddef.h>
31#include <fcntl.h>
32#include <unistd.h>
33#include <pcre.h>
34#include <limits.h>
35#include <fnmatch.h>
36#include <ctype.h>
37
38#include "mem.h"
39#include "log.h"
40#include "hex.h"
41#include "charset.h"
42#include "configuration.h"
43#include "table.h"
44#include "syscalls.h"
45#include "kvp.h"
46#include "vector.h"
47#include "split.h"
48#include "inputline.h"
49#include "regsub.h"
50#include "defs.h"
51#include "sink.h"
9faa7a88 52#include "server-cgi.h"
460b9539 53#include "printf.h"
54#include "mime.h"
18cda350 55#include "unicode.h"
3dddcfa4 56#include "hash.h"
460b9539 57
460b9539 58void cgi_header(struct sink *output, const char *name, const char *value) {
59 sink_printf(output, "%s: %s\r\n", name, value);
60}
61
62void cgi_body(struct sink *output) {
63 sink_printf(output, "\r\n");
64}
65
460b9539 66/*
67Local Variables:
68c-basic-offset:2
69comment-column:40
70End:
71*/