The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

HTTP::Daemon::OpenInteract2 - Subclass of HTTP::Daemon for OpenInteract 2

SYNOPSIS

 my %options = ( LocalAddr => 'localhost',
                 LocalPort => 8081,
                 Proto     => 'tcp' );
 my $daemon = HTTP::Daemon::OpenInteract2->new( %options )
                     || die "Cannot create daemon! $!\n";
 print "OpenInteract now running at URL <", $daemon->url, ">\n";

DESCRIPTION

Subclass of HTTP::Daemon that just overrides the product_tokens() method to add the current OpenInteract version to the server header.

SEE ALSO

HTTP::Daemon

COPYRIGHT

Copyright (c) 2002-2003 Chris Winters. All rights reserved.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

AUTHORS

Chris Winters <chris@cwinters.com>