in reply to "Do not exceed 10 half-open simultaneous connections" flag for LWP::UserAgent

You will probably have even more trouble trying to run this on Vista Home, which is limited to 2 connections.

You could try to fix the problem by downloading the patch recommended for tcpip.sys.

     "As you get older three things happen. The first is your memory goes, and I can't remember the other two... " - Sir Norman Wisdom

  • Comment on Re: "Do not exceed 10 half-open simultaneous connections" flag for LWP::UserAgent

Replies are listed 'Best First'.
Re^2: "Do not exceed 10 half-open simultaneous connections" flag for LWP::UserAgent
by cw010000 (Initiate) on Mar 13, 2008 at 17:37 UTC
    I assume you are using this for a bot. Why not set up a loop that accepts the limit, but monitors when a download is finished, closes that Agent, then does another, etc.? You would still face the limit at any given time, but could could sset it up to contually execute...
      No, this is sort of a web crawler, so I initiate all my connections myself. As I said before, one real easy solution is to only have 10 at any given time, but in reality I can have more, just not more than 10 in the "connecting" state at any given time. Damn it, I should probably get a normal O/S :-)