httpd.h revision 290001
1/*
2 * Copyright (C) 2006-2008  Internet Systems Consortium, Inc. ("ISC")
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
9 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
10 * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
11 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
12 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
13 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
14 * PERFORMANCE OF THIS SOFTWARE.
15 */
16
17/* $Id: httpd.h,v 1.9 2008/08/08 05:06:49 marka Exp $ */
18
19#ifndef ISC_HTTPD_H
20#define ISC_HTTPD_H 1
21
22/*! \file */
23
24#include <isc/event.h>
25#include <isc/eventclass.h>
26#include <isc/types.h>
27#include <isc/mutex.h>
28#include <isc/task.h>
29
30#define HTTPD_EVENTCLASS		ISC_EVENTCLASS(4300)
31#define HTTPD_SHUTDOWN			(HTTPD_EVENTCLASS + 0x0001)
32
33#define ISC_HTTPDMGR_FLAGSHUTTINGDOWN	0x00000001
34
35/*
36 * Create a new http daemon which will send, once every time period,
37 * a http-like header followed by HTTP data.
38 */
39isc_result_t
40isc_httpdmgr_create(isc_mem_t *mctx, isc_socket_t *sock, isc_task_t *task,
41		    isc_httpdclientok_t *client_ok,
42		    isc_httpdondestroy_t *ondestory, void *cb_arg,
43		    isc_timermgr_t *tmgr, isc_httpdmgr_t **httpdp);
44
45void
46isc_httpdmgr_shutdown(isc_httpdmgr_t **httpdp);
47
48isc_result_t
49isc_httpdmgr_addurl(isc_httpdmgr_t *httpdmgr, const char *url,
50		    isc_httpdaction_t *func, void *arg);
51
52isc_result_t
53isc_httpd_response(isc_httpd_t *httpd);
54
55isc_result_t
56isc_httpd_addheader(isc_httpd_t *httpd, const char *name,
57		    const char *val);
58
59isc_result_t
60isc_httpd_addheaderuint(isc_httpd_t *httpd, const char *name, int val);
61
62isc_result_t isc_httpd_endheaders(isc_httpd_t *httpd);
63
64#endif /* ISC_HTTPD_H */
65