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

NAME
HTTP::Request::Params - Retrieve GET/POST Parameters from HTTP Requests SYNOPSIS
use HTTP::Request::Params; my $http_request = read_request(); my $parse_params = HTTP::Request::Params->new({ req => $http_request, }); my $params = $parse_params->params; DESCRIPTION
This software does all the dirty work of parsing HTTP Requests to find incoming query parameters. new my $parser = HTTP::Request::Params->new({ req => $http_request, }); "req" - This required argument is either an "HTTP::Request" object or a string containing an entier HTTP Request. Incoming query parameters come from two places. The first place is the "query" portion of the URL. Second is the content portion of an HTTP request as is the case when parsing a POST request, for example. params my $params = $parser->params; Returns a hash reference containing all the parameters. The keys in this hash are the names of the parameters. Values are the values associated with those parameters in the incoming query. For parameters with multiple values, the value in this hash will be a list reference. This is the same behaviour as the "CGI" module's "Vars()" function. req my $req_object = $parser->req; Returns the "HTTP::Request" object. mime my $mime_object = $parser->mime; Returns the "Email::MIME" object. Now, you may be wondering why we're dealing with an "Email::MIME" object. The answer is simple. It's an amazing parser for MIME compliant messages, and RFC 822 compliant messages. When parsing incoming POST data, especially file uploads, "Email::MIME" is the perfect fit. It's fast and light. SEE ALSO
"HTTP::Daemon", HTTP::Request, Email::MIME, CGI, perl. AUTHOR
Casey West, <casey@geeknest.com>. COPYRIGHT
Copyright (c) 2005 Casey West. All rights reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2005-01-12 HTTP::Request::Params(3pm)