Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

stream data from LWP?

Status
Not open for further replies.

sebastiannielsen

Programmer
Jun 1, 2003
25
SE
Im building a transparant antiSSL-proxy in perl.
In have a:
RewriteRule ^/(.*)$ /nph-netscript.cgi/$1
in the apache.conf file.

If an user uploads a big file, it gets timeouted. This because first:

User uploads whole file
LWP uploads file to the server given in $ENV{'HOST'}
LWP downloads all info from the upstream server
LWP sends info to the user.

Are it any possibly to "stream" data in chunks from and to LWP, so the communication goes faster.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top