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::Request::AsCGI(3pm)				User Contributed Perl Documentation				 HTTP::Request::AsCGI(3pm)

NAME
HTTP::Request::AsCGI - Set up a CGI environment from an HTTP::Request VERSION
version 1.2 SYNOPSIS
use CGI; use HTTP::Request; use HTTP::Request::AsCGI; my $request = HTTP::Request->new( GET => 'http://www.host.com/' ); my $stdout; { my $c = HTTP::Request::AsCGI->new($request)->setup; my $q = CGI->new; print $q->header, $q->start_html('Hello World'), $q->h1('Hello World'), $q->end_html; $stdout = $c->stdout; # environment and descriptors will automatically be restored # when $c is destructed. } while ( my $line = $stdout->getline ) { print $line; } DESCRIPTION
Provides a convenient way of setting up an CGI environment from an HTTP::Request. METHODS
new ( $request [, key => value ] ) Constructor. The first argument must be a instance of HTTP::Request, followed by optional pairs of environment key and value. environment Returns a hashref containing the environment that will be used in setup. Changing the hashref after setup has been called will have no effect. setup Sets up the environment and descriptors. restore Restores the environment and descriptors. Can only be called after setup. request Returns the request given to constructor. response Returns a HTTP::Response. Can only be called after restore. stdin Accessor for handle that will be used for STDIN, must be a real seekable handle with an file descriptor. Defaults to a tempoary IO::File instance. stdout Accessor for handle that will be used for STDOUT, must be a real seekable handle with an file descriptor. Defaults to a tempoary IO::File instance. stderr Accessor for handle that will be used for STDERR, must be a real seekable handle with an file descriptor. SEE ALSO
examples directory in this distribution. WWW::Mechanize::CGI Test::WWW::Mechanize::CGI THANKS TO
Thomas L. Shinnick for his valuable win32 testing. AUTHORS
Christian Hansen <ch@ngmedia.com> Hans Dieter Pearcey <hdp@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2010 by Christian Hansen <ch@ngmedia.com>. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.10.1 2010-01-12 HTTP::Request::AsCGI(3pm)