The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "module:HTTP::Proxy"

HTTP::Proxy - A pure Perl HTTP proxy River stage one • 8 direct dependents • 8 total dependents

This module implements an HTTP proxy, using an HTTP::Daemon to accept client connections, and an LWP::UserAgent to ask for the requested pages. The most interesting feature of this proxy object is its ability to filter the HTTP requests and responses...

BOOK/HTTP-Proxy-0.304 - 16 Jun 2015 00:49:14 UTC

HTTP::Proxy::Engine - Generic child process manager engine for HTTP::Proxy River stage one • 8 direct dependents • 8 total dependents

The HTTP::Proxy::Engine class is a front-end to actual proxy engine classes. The role of an engine is to implement the main fork+serve loop with all the required bookkeeping. This is also a good way to test various implementation and/or try out new a...

BOOK/HTTP-Proxy-0.304 - 16 Jun 2015 00:49:14 UTC

HTTP::Proxy::Builder - Assemble several proxies into a single one. River stage zero No dependents

Until now, HTTP::Proxy programs started as a simple one-purpose program, and quickly grew out of that when one started to "enhance" more and more web sites. Sometimes not all the features are needed, and commenting out large sections of a big proxy s...

BOOK/HTTP-Proxy-Builder-0.01 - 24 Sep 2008 08:03:08 UTC

Metabrik::Proxy::Http - proxy::http Brik River stage zero No dependents

GOMOR/Metabrik-Repository-1.44 - 11 Aug 2023 15:22:31 UTC

HTTP::Proxy::Selective - Simple HTTP Proxy which serves some paths from locations on local disk. River stage zero No dependents

HTTP::Proxy::Selective acts as a filter for HTTP::Proxy. You pass it a filter data structure when you create it (as per the example above), and any URLs requested through the proxy which match the filter are served from the path on local disk specifi...

BOBTFISH/HTTP-Proxy-Selective-0.004 - 24 Nov 2009 14:53:53 UTC

Connector::Proxy::HTTP River stage zero No dependents

Send or retrieve data from a defined URI using HTTP....

MRSCOTTY/Connector-1.54 - 08 Jan 2024 15:18:31 UTC

HTTP::Proxy::BodyFilter - A base class for HTTP messages body filters River stage one • 8 direct dependents • 8 total dependents

The HTTP::Proxy::BodyFilter class is used to create filters for HTTP request/response body data. Creating a BodyFilter A BodyFilter is just a derived class that implements some methods called by the proxy. Of all the methods presented below, only "fi...

BOOK/HTTP-Proxy-0.304 - 16 Jun 2015 00:49:14 UTC

Pcore::API::Proxy::http River stage one • 1 direct dependent • 1 total dependent

ZDM/Pcore-v0.139.0 - 14 Jul 2020 14:12:56 UTC

HTTP::Proxy::FilterStack - A class to manage filter stacks River stage one • 8 direct dependents • 8 total dependents

This class is used internally by HTTP::Proxy to manage its four filter stacks. From the point of view of HTTP::Proxy::FilterStack, a filter is actually a ("matchsub", "filterobj") pair. The match subroutine (generated by HTTP::Proxy's "push_filter()"...

BOOK/HTTP-Proxy-0.304 - 16 Jun 2015 00:49:14 UTC

HTTP::Proxy::HeaderFilter - A base class for HTTP message header filters River stage one • 8 direct dependents • 8 total dependents

The HTTP::Proxy::HeaderFilter class is used to create filters for HTTP request/response headers. Creating a HeaderFilter A HeaderFilter is just a derived class that implements some methods called by the proxy. Of all the methods presented below, only...

BOOK/HTTP-Proxy-0.304 - 16 Jun 2015 00:49:14 UTC

HTTP::Proxy::GreaseMonkey - Run GreaseMonkey scripts in any browser River stage zero No dependents

GreaseMonkey allows arbitrary user defined Javascript to be run against specific pages. Unfortunately GreaseMonkey only works with FireFox. "HTTP::Proxy::GreaseMonkey" creates a local HTTP proxy that allows GreaseMonkey user scripts to be used with a...

ANDYA/HTTP-Proxy-GreaseMonkey-0.05 - 21 Dec 2007 00:54:22 UTC

HTTP::Proxy::Engine::Legacy - The "older" HTTP::Proxy engine River stage one • 8 direct dependents • 8 total dependents

This engine reproduces the older child creation algorithm of HTTP::Proxy. Angelos Karageorgiou "<angelos@unix.gr>" reports: *I got the Legacy engine to work really fast under "Win32" with the following trick:* max_keep_alive_requests(1); max_clients(...

BOOK/HTTP-Proxy-0.304 - 16 Jun 2015 00:49:14 UTC

HTTP::Proxy::Engine::NoFork - A basic, non forking HTTP::Proxy engine River stage one • 8 direct dependents • 8 total dependents

The HTTP::Proxy::Engine::NoFork engine runs the proxy without forking....

BOOK/HTTP-Proxy-0.304 - 16 Jun 2015 00:49:14 UTC

HTTP::Proxy::BodyFilter::tags - A filter that outputs only complete tags River stage one • 8 direct dependents • 8 total dependents

The HTTP::Proxy::BodyFilter::tags filter makes sure that the next filter in the filter chain will only receive complete tags....

BOOK/HTTP-Proxy-0.304 - 16 Jun 2015 00:49:14 UTC

HTTP::Proxy::Engine::Threaded - A scoreboard-based HTTP::Proxy engine River stage one • 8 direct dependents • 8 total dependents

This module provides a threaded engine to HTTP::Proxy....

BOOK/HTTP-Proxy-0.304 - 16 Jun 2015 00:49:14 UTC

HTTP::Proxy::BodyFilter::save - A filter that saves transferred data to a file River stage one • 8 direct dependents • 8 total dependents

The HTTP::Proxy::BodyFilter::save filter can save HTTP messages (responses or request) bodies to files. The name of the file is determined by a template and the URI of the request. Simply insert this filter in a filter stack, and it will save the dat...

BOOK/HTTP-Proxy-0.304 - 16 Jun 2015 00:49:14 UTC

HTTP::Proxy::BodyFilter::lines - A filter that outputs only complete lines River stage one • 8 direct dependents • 8 total dependents

The HTTP::Proxy::BodyFilter::lines filter makes sure that the next filter in the filter chain will only receive complete lines. The "chunks" of data received by the following filters with either end with "\n" or will be the last piece of data for the...

BOOK/HTTP-Proxy-0.304 - 16 Jun 2015 00:49:14 UTC

HTTP::Proxy::BodyFilter::Adnix - Automatically block advertising images with custom regexes River stage zero No dependents

"HTTP::Proxy::BodyFilter::Adnix" filter module is based on "HTTP::Proxy::BodyFilter" class that is part of "HTTP::Proxy" distribution. This filter tries to detect advertising images into your HTTP requests, and it replaces them with an image of your ...

COSIMO/HTTP-Proxy-BodyFilter-Adnix-0.01 - 19 Jun 2004 09:51:25 UTC

HTTP::Proxy::BodyFilter::simple - A class for creating simple filters River stage one • 8 direct dependents • 8 total dependents

HTTP::Proxy::BodyFilter::simple can create BodyFilter without going through the hassle of creating a full-fledged class. Simply pass a code reference to the "filter()" method of your filter to the constructor, and you'll get the adequate filter. Cons...

BOOK/HTTP-Proxy-0.304 - 16 Jun 2015 00:49:14 UTC

HTTP::Proxy::Engine::ScoreBoard - A scoreboard-based HTTP::Proxy engine River stage one • 8 direct dependents • 8 total dependents

This module provides a scoreboard-based engine to HTTP::Proxy....

BOOK/HTTP-Proxy-0.304 - 16 Jun 2015 00:49:14 UTC
137 results (0.099 seconds)