Path: csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.015 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; '16,': 0.03; 'assuming': 0.09; 'cc:addr:python-list': 0.11; 'jan': 0.12; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'subject:python': 0.16; 'wrote:': 0.18; 'thu,': 0.19; 'entered': 0.20; 'cc:addr:python.org': 0.22; 'environment': 0.24; 'cc:2**0': 0.24; "i've": 0.25; 'header:In-Reply-To:1': 0.27; 'chris': 0.29; 'am,': 0.29; 'message-id:@mail.gmail.com': 0.30; "i'm": 0.30; 'becomes': 0.33; 'connection': 0.35; 'received:google.com': 0.35; 'done': 0.36; 'handle': 0.38; 'does': 0.39; 'simple': 0.61; 'first': 0.61; "everything's": 0.84; 'to:none': 0.92 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:cc :content-type; bh=jo7vIAkIF+rpKyNLMh1lSFpKi1YekuAxtqdKLAKsN2E=; b=w9n9iLk3/pgtib8f9W5vlhPzUbkGKYGvZLnmisRO4Jptj7avIyOU7Yk9LTfji4KyxU +tI3GFNFcVOa0DExnicLsEnHyYy/w+HOuMb+pB+nVzNPz9zHz/4S0LZZ3oIMVeOD5ve3 dfmZ7HFQb0FzopXHAmnNxIk5I4i0RDaH26KyUzemD+3ZSpBpfvUh9Gop7tt5crdkDu/X pd+wLeTSIh6lavZ5ec02nXzl9M7gw0rYoySpjL5x1zntTR/XaTNBk7GS3puw7xuJvXYl Q/BYaRxTlJ2kUcp1XDSituT6nhU4bvWjcnnhg8JS/mwAAhBTho0YbNX/+iD6FUXwDQxv dspw== MIME-Version: 1.0 X-Received: by 10.66.26.176 with SMTP id m16mr3941952pag.142.1389803536353; Wed, 15 Jan 2014 08:32:16 -0800 (PST) In-Reply-To: References: <22d58d76-f2c2-4a1d-8049-3409ac4665d3@googlegroups.com> <9202d352-e065-4f2b-a9e0-e29ce5c68df6@googlegroups.com> <7B721FFF-5F01-4736-AC82-B5E71848F926@mac.com> Date: Thu, 16 Jan 2014 03:32:16 +1100 Subject: Re: Learning python networking From: Chris Angelico Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 10 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1389803544 news.xs4all.nl 2954 [2001:888:2000:d::a6]:51744 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:63997 On Thu, Jan 16, 2014 at 3:31 AM, Chris Angelico wrote: > I'm assuming an authentication system > that stipulates one single active connection per authenticated user Incidentally, in an environment where everything's trusted (LAN or localhost), the "authentication system" can be as simple as "type a user name". I've done systems like that; first line entered becomes the handle or key, and it does the same kick-off system on duplicate. ChrisA