Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!us.feeder.erje.net!goblin1!goblin.stu.neva.ru!news2.euro.net!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.025 X-Spam-Evidence: '*H*': 0.95; '*S*': 0.00; 'python': 0.09; 'sockets': 0.09; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'tcp': 0.16; 'tcp,': 0.16; 'then...': 0.16; 'wrote:': 0.17; 'restrictions': 0.17; 'thu,': 0.17; 'jan': 0.18; '31,': 0.22; 'pipe': 0.22; 'header:In-Reply-To:1': 0.25; 'am,': 0.27; 'message- id:@mail.gmail.com': 0.27; 'there.': 0.28; 'behavior.': 0.29; 'to:addr:python-list': 0.33; 'received:google.com': 0.34; 'received:209.85.220': 0.35; 'received:209.85': 0.35; 'url:org': 0.36; 'does': 0.37; 'received:209': 0.37; 'subject:: ': 0.38; 'to:addr:python.org': 0.39; 'think': 0.40; 'here:': 0.62; '2013': 0.84; 'alberto': 0.84; 'wheel': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:content-type:content-transfer-encoding; bh=WxyNsB/UH3J4tkAWWUDEHMosuwUBdB6czX4DAfiSxGU=; b=v9wwdc712L1MIa8M5tMjPlsRSZCHzHDhC6kNTHhuPMvHjoOmFJysm0b3qYDFiBa6AA V5D0Eu4FSfV2TWoW7hLsMvJMHqiWAbdSTJq7F0cKeDwbAyhhR0gV7xa01diFiPwzrfEo YlDNk6xq9AYBNlOmySDyzbQMINfqXCs0Y6Njxs4n2iIi+/84Yl1aV9E8A2D3XPrMHi0l Vb7wuTi/lr65Qq2WeUJllhgouGBGdvwPyQHhkSxt0HU8XnoW04+ExHdj8SR09m/M/LTg NYyZMERh3jSkdVnUrS0b2Q25jmmwA2drz1pDB/bRkFth5Pg1eLHnqeSON2HMLaC3T8Cr NqJA== MIME-Version: 1.0 X-Received: by 10.52.29.109 with SMTP id j13mr5683709vdh.111.1359591267346; Wed, 30 Jan 2013 16:14:27 -0800 (PST) In-Reply-To: References: <51099B55.80808@davea.name> Date: Thu, 31 Jan 2013 11:14:27 +1100 Subject: Re: pyrudp From: Chris Angelico To: python-list@python.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable 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: 13 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1359591270 news.xs4all.nl 6957 [2001:888:2000:d::a6]:45394 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:37973 On Thu, Jan 31, 2013 at 11:04 AM, Jorge Alberto Diaz Orozco wrote: > I have restrictions in my system that does not allow me to use TCP, so I = want to make a pipe over UDP imitating TCP behavior. > I have control over both endpoints, and I=B4m writing both of them. > I just don=B4t want to re-invent the wheel and I=B4m looking for a reliab= le UDP sockets implementation for Python so I can start from there. Then... I think the place to start is here: http://www.ietf.org/rfc/rfc793.txt ChrisA