in reply to Re: oh, I wrote this, btw
in thread annoying phrases one-liner censor

Probably by writing a censoring, filtering proxy in Perl... which can be quite tricky (at least for me).

Greetz
Beatnik
... Quidquid perl dictum sit, altum viditur.

Replies are listed 'Best First'.
Re: Re: Re: oh, I wrote this, btw
by John M. Dlugosz (Monsignor) on Jul 06, 2001 at 07:54 UTC
    I have a proxy that filters ads and "web bugs".

    Years ago, I wrote a proxy for DICOM protocal (used in medical imaging machines) to serve as a sniffer. It decodes the data stream and shows the user, and allows a Perl script to make changes to the data, re-encodes it, and passes it along.

    This was a hibrid solution, using NT-specific functions for high-speed throughput of the read/write (I/O completion ports and no copying of buffers in between), and an embedded Perl interpreter to decode the data that's T'ed out from it.

    —John