Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #58868

Re: OT: How to tell an HTTP client to limit parallel connections?

Path csiph.com!newsfeed.hal-mli.net!feeder3.hal-mli.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!news.tele.dk!feed118.news.tele.dk!news.tele.dk!small.news.tele.dk!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail
Return-Path <rosuav@gmail.com>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.023
X-Spam-Evidence '*H*': 0.95; '*S*': 0.00; 'pop': 0.05; 'skip:/ 10': 0.09; 'used.': 0.09; 'subject:How': 0.10; 'random': 0.14; '"real"': 0.16; 'block.': 0.16; 'blocking': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'shot.': 0.16; 'subject:limit': 0.16; 'sat,': 0.16; 'wrote:': 0.18; 'bit': 0.19; 'regardless': 0.24; 'source': 0.25; 'possibly': 0.26; 'least': 0.26; 'header:In-Reply-To:1': 0.27; 'am,': 0.29; 'message-id:@mail.gmail.com': 0.30; "i'm": 0.30; 'that.': 0.31; 'libraries': 0.31; 'os,': 0.31; "we're": 0.32; 'another': 0.32; 'entirely': 0.33; 'sources': 0.33; 'but': 0.35; 'received:google.com': 0.35; 'add': 0.35; 'subject:?': 0.36; 'connections': 0.38; 'nov': 0.38; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'name': 0.63; 'more': 0.64; 'worth': 0.66; 'wish': 0.70; 'lack': 0.78; 'by.': 0.84; 'subject:tell': 0.84; 'edwards': 0.91; '2013': 0.98
DKIM-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=lzE/VEge0E6gQ1T5YCK6fRmoELETUCAaYMSBXOLHnUY=; b=jx0lfIkxtarpTYpvLa/VWVCJhZKiNXlDjLkoAgwGT1XymQHGlaUzzb08uIKAOvldla 68CV1g1rSSPFyGRZf8TphHw02bCL7LtOxxjlGP5SLZv9cCmIZfcM72n/xVneBP2A9h5I wRrDamm9KAoQiGgvX1+VAFGEjjLjNkKYIrQvyk53hpBFgHekD9MLJqP4HhfQPbdwLX9h VGSsui7HR7hSZIP2ktT5s2hZe6ybaeJOOcTxRM6/fVMBXAa267cvNDRPCEt2FhlqrPoF q+0okRBSDdFLKHOKkpmxjjB296NuXbNY3LyfKOGUZUVFOh5hBF97QDEpocev3yhWWBQJ agsQ==
MIME-Version 1.0
X-Received by 10.68.191.3 with SMTP id gu3mr16811616pbc.142.1383946143209; Fri, 08 Nov 2013 13:29:03 -0800 (PST)
In-Reply-To <l5jk84$23$3@reader1.panix.com>
References <l5j6q7$5ko$1@reader1.panix.com> <mailman.2240.1383934618.18130.python-list@python.org> <l5jdi5$er3$1@reader1.panix.com> <mailman.2245.1383940002.18130.python-list@python.org> <l5jinm$i7g$1@reader1.panix.com> <mailman.2256.1383944501.18130.python-list@python.org> <l5jk84$23$3@reader1.panix.com>
Date Sat, 9 Nov 2013 08:29:03 +1100
Subject Re: OT: How to tell an HTTP client to limit parallel connections?
From Chris Angelico <rosuav@gmail.com>
To python-list@python.org
Content-Type text/plain; charset=ISO-8859-1
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.15
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.2261.1383946152.18130.python-list@python.org> (permalink)
Lines 18
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1383946152 news.xs4all.nl 15892 [2001:888:2000:d::a6]:59295
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python:58868

Show key headers only | View raw


On Sat, Nov 9, 2013 at 8:14 AM, Grant Edwards <invalid@invalid.invalid> wrote:
>> or are your connections blocking for lack of entropy?
>
> Nope. The cyrpto libraries we're using don't do that.  I'm not
> entirely happy with the entropy generation used.  I wish I had more
> sources of "real" randomness, but at least they don't block.
>
>> You might be able to add another source of random bits, or possibly
>> reduce security a bit by allowing less-secure randomness from
>> /dev/urandom.
>
> It's not Unix-like OS, but that's more or less what's happening.

And pop goes another theory. I knew you'd know what I mean by
/dev/urandom, regardless of the name you'd actually reference it by.
Oh well, worth a shot.

ChrisA

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

OT: How to tell an HTTP client to limit parallel connections? Grant Edwards <invalid@invalid.invalid> - 2013-11-08 17:25 +0000
  Re: OT: How to tell an HTTP client to limit parallel connections? donarb <donarb@nwlink.com> - 2013-11-08 09:39 -0800
  Re: OT: How to tell an HTTP client to limit parallel connections? Skip Montanaro <skip@pobox.com> - 2013-11-08 11:39 -0600
    Re: OT: How to tell an HTTP client to limit parallel connections? Grant Edwards <invalid@invalid.invalid> - 2013-11-08 18:01 +0000
  Re: OT: How to tell an HTTP client to limit parallel connections? Chris Angelico <rosuav@gmail.com> - 2013-11-09 05:16 +1100
    Re: OT: How to tell an HTTP client to limit parallel connections? Grant Edwards <invalid@invalid.invalid> - 2013-11-08 19:20 +0000
      Re: OT: How to tell an HTTP client to limit parallel connections? Chris Angelico <rosuav@gmail.com> - 2013-11-09 06:39 +1100
        Re: OT: How to tell an HTTP client to limit parallel connections? Grant Edwards <invalid@invalid.invalid> - 2013-11-08 20:48 +0000
          Re: OT: How to tell an HTTP client to limit parallel connections? Chris Angelico <rosuav@gmail.com> - 2013-11-09 08:01 +1100
            Re: OT: How to tell an HTTP client to limit parallel connections? Grant Edwards <invalid@invalid.invalid> - 2013-11-08 21:14 +0000
              Re: OT: How to tell an HTTP client to limit parallel connections? Chris Angelico <rosuav@gmail.com> - 2013-11-09 08:29 +1100
  RE: How to tell an HTTP client to limit parallel connections? Nick Cash <nick.cash@npcinternational.com> - 2013-11-08 19:42 +0000
    Re: How to tell an HTTP client to limit parallel connections? Grant Edwards <invalid@invalid.invalid> - 2013-11-08 21:02 +0000
  Re: OT: How to tell an HTTP client to limit parallel connections? Ian Kelly <ian.g.kelly@gmail.com> - 2013-11-08 13:13 -0700
    Re: OT: How to tell an HTTP client to limit parallel connections? Grant Edwards <invalid@invalid.invalid> - 2013-11-08 21:05 +0000

csiph-web