in.www 1.01 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News in.www 1.01 (Default branch)
# 1  
Old 08-15-2008
in.www 1.01 (Default branch)

in.www is a simple inetd-based Web server. Itsupports HTTP 1.0 and CGI 1.0. It is written inpure C with no dependencies, extremely light onresources (at less than 100Kb per process), andsecure. It is ideal for embedded devices withminimal resources, such as the Linksys NSLU2.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Web Development

www-csli

Hi, how comes that this website has "www-csli" rather than "www" as URL ? CSLI Center for the Study of Language and Information -- Stanford University thanks (1 Reply)
Discussion started by: aneuryzma
1 Replies

2. UNIX for Dummies Questions & Answers

www.caldera.com

what happened with www.caldera.com or www.sco.com? i cant access the sites 10 days now. I try from my home pc, from internet cafe,from my work. Can you access these sites? I live in Greece. (2 Replies)
Discussion started by: kalco
2 Replies

3. Post Here to Contact Site Administrators and Moderators

www.unix.com

Of late, when i start www.unix.com my system is going to 100% CPU and takes lot of time to get the information. I think this is happening after adding the graphics on the page. Has anyone seen this problem..Sorry to post this here.. (6 Replies)
Discussion started by: sssow
6 Replies
Login or Register to Ask a Question
HTTP::Server::Simple::CGI(3pm)				User Contributed Perl Documentation			    HTTP::Server::Simple::CGI(3pm)

NAME
HTTP::Server::Simple::CGI - CGI.pm-style version of HTTP::Server::Simple DESCRIPTION
HTTP::Server::Simple was already simple, but some smart-ass pointed out that there is no CGI in HTTP, and so this module was born to isolate the CGI.pm-related parts of this handler. accept_hook The accept_hook in this sub-class clears the environment to the start-up state. post_setup_hook Initializes the global CGI object, as well as other environment settings. cgi_class [Classname] Gets or sets the class to use for creating the $cgi object passed to "handle_request". Called with a single argument, it sets the coderef. Called with no arguments, it returns this field's current value. To provide an initialization subroutine to be run in the post_setup_hook, see "cgi_init". e.g. $server->cgi_class('CGI'); $server->cgi_init(sub { require CGI; CGI::initialize_globals(); }); or, if you want to use CGI::Simple, $server->cgi_class('CGI::Simple'); $server->cgi_init(sub { require CGI::Simple; }); cgi_init [CODEREF] A coderef to run in the post_setup_hook. Called with a single argument, it sets the coderef. Called with no arguments, it returns this field's current value. setup This method sets up CGI environment variables based on various meta-headers, like the protocol, remote host name, request path, etc. See the docs in HTTP::Server::Simple for more detail. handle_request CGI This routine is called whenever your server gets a request it can handle. It's called with a CGI object that's been pre-initialized. You want to override this method in your subclass handler Handler implemented as part of HTTP::Server::Simple API perl v5.10.1 2010-04-02 HTTP::Server::Simple::CGI(3pm)