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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
/* HTTPMISC.H (c)Copyright Jan Jaeger, 2002-2009 */
/* HTTP Server header file */
#ifndef _HTTPMISC_H
#define _HTTPMISC_H
#ifdef _HTTPSERV_C_
/* We're building the 'httpserv.c' module, so export
our entry-points so that others may import them */
#define HTTP_DLL_IMPORT DLL_EXPORT
#else /* _HTTPSERV_C_ */
/* We're building the 'hengine.dll' module, so declare
our entry-points as extern so we can link ourselves */
#ifdef _HENGINE_DLL_
#define HTTP_DLL_IMPORT extern
#else /* _HENGINE_DLL_ */
/* Some other module is being built, so declare our
entry-points as 'import' so they can import them */
#define HTTP_DLL_IMPORT DLL_IMPORT
#endif /* _HENGINE_DLL_ */
#endif /* _HTTPSERV_C_ */
#if !defined(PKGDATADIR)
#if !defined(_MSVC_)
#define HTTP_ROOT "/usr/local/share/hercules/"
#else
#define HTTP_ROOT "%ProgramFiles%\\Hercules\\html\\"
#endif
#else
#define HTTP_ROOT PKGDATADIR "/"
#endif
#if !defined(_MSVC_)
#define HTTP_PS "/"
#else
#define HTTP_PS "\\"
#endif
#define HTTP_WELCOME "hercules.html"
#define HTML_HEADER "include/header.htmlpart"
#define HTML_FOOTER "include/footer.htmlpart"
#define HTML_STATIC_EXPIRY_TIME (60*60*24*7)
#if defined(PATH_MAX)
#define HTTP_PATH_LENGTH PATH_MAX
#else
#define HTTP_PATH_LENGTH 1024
#endif
typedef struct _CGIVAR {
struct _CGIVAR *next;
char *name;
char *value;
int type;
#define VARTYPE_NONE 0
#define VARTYPE_GET 1
#define VARTYPE_POST 2
#define VARTYPE_PUT 4
#define VARTYPE_COOKIE 8
} CGIVAR;
#define cgi_variable(_webblk, _varname) \
http_variable((_webblk), (_varname), (VARTYPE_GET|VARTYPE_POST))
#define cgi_cookie(_webblk, _varname) \
http_variable((_webblk), (_varname), (VARTYPE_COOKIE))
#define cgi_username(_webblk) \
((_webblk)->user)
#define cgi_baseurl(_webblk) \
((_webblk)->baseurl)
typedef struct _MIMETAB {
char *suffix;
char *type;
} MIMETAB;
typedef struct _WEBBLK {
#define HDL_VERS_WEBBLK "2.17"
#define HDL_SIZE_WEBBLK sizeof(WEBBLK)
int sock;
int request_type;
#define REQTYPE_NONE 0
#define REQTYPE_GET 1
#define REQTYPE_POST 2
#define REQTYPE_PUT 4
char *request;
char *baseurl;
char *user;
CGIVAR *cgivar;
} WEBBLK;
typedef void (*zz_cgibin) (WEBBLK *webblk);
typedef struct _CGITAB {
char *path;
zz_cgibin cgibin;
} CGITAB;
HTTP_DLL_IMPORT void html_header (WEBBLK *webblk);
HTTP_DLL_IMPORT void html_footer (WEBBLK *webblk);
HTTP_DLL_IMPORT int html_include (WEBBLK *webblk, char *filename);
HTTP_DLL_IMPORT char *http_variable (WEBBLK *webblk, char *name, int type);
void *http_server (void *arg);
#endif /* _HTTPMISC_H */
|