Home | History | Annotate | Download | only in lua

Lines Matching refs:bozohttpd

68 bozohttpd = glupkg()
71 httpd = bozohttpd.new()
72 bozohttpd.init_httpd(httpd)
73 prefs = bozohttpd.init_prefs()
78 bozohttpd.set_pref(httpd, prefs, "port number", options.portnum)
81 bozohttpd.set_pref(httpd, prefs, "background", options.background)
84 bozohttpd.set_pref(httpd, prefs, "numeric", "true")
87 bozohttpd.set_pref(httpd, prefs, "log to stderr", "true")
90 bozohttpd.set_pref(httpd, prefs, "foreground", "true")
93 bozohttpd.set_pref(httpd, prefs, "trusted referal", "true")
98 bozohttpd.dynamic_mime(httpd, suffix, type, s1, s2)
101 bozohttpd.set_pref(httpd, prefs, "server software", options.serversw)
105 bozohttpd.dynamic_mime(httpd, cert, priv)
108 bozohttpd.set_pref(httpd, prefs, "username", options.username)
111 bozohttpd.set_pref(httpd, prefs, "unknown slash", "true")
114 bozohttpd.set_pref(httpd, prefs, "virtual base", options.virtbase)
117 bozohttpd.set_pref(httpd, prefs, "index.html", options.indexhtml)
120 bozohttpd.set_pref(httpd, prefs, "dirty environment", "true")
123 bozohttpd.set_pref(httpd, prefs, "bind address", options.bindaddr)
126 bozohttpd.cgi_setbin(httpd, options.cgibin)
130 bozohttpd.cgi_map(httpd, name, handler)
133 bozohttpd.set_pref(httpd, prefs, "public_html", options.public_html)
136 bozohttpd.set_pref(httpd, prefs, "chroot dir", options.chroot)
139 bozohttpd.set_pref(httpd, prefs, "enable users", "true")
142 bozohttpd.set_pref(httpd, prefs, "hide dots", "true")
145 bozohttpd.set_pref(httpd, prefs, "enable user cgibin", "true")
148 bozohttpd.set_pref(httpd, prefs, "directory indexing", "true")
156 bozohttpd.setup(httpd, prefs, vhost, args[1])
161 req = bozohttpd.read_request(httpd)
162 bozohttpd.process_request(req)
163 bozohttpd.clean_request(req)