Path: csiph.com!usenet.pasdenom.info!news.redatomik.org!newsfeed.xs4all.nl!newsfeed7.news.xs4all.nl!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.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'receives': 0.03; 'subject:Python': 0.05; 'socket': 0.07; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'sockets': 0.09; 'types:': 0.09; 'server,': 0.15; 'client,': 0.16; 'disk.': 0.16; 'distinct': 0.16; 'nodes': 0.16; 'nodes.': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'such,': 0.16; 'wrote:': 0.16; 'sends': 0.22; 'header:In-Reply-To:1': 0.24; 'header:User- Agent:1': 0.26; 'header:X-Complaints-To:1': 0.26; 'chris': 0.26; 'connects': 0.27; 'data,': 0.27; 'node': 0.29; "people's": 0.29; 'mode': 0.31; 'point': 0.33; 'received:comcast.net': 0.33; 'view,': 0.33; 'another': 0.34; 'to:addr:python-list': 0.35; 'stores': 0.35; 'there': 0.36; 'data.': 0.36; 'two': 0.37; 'client': 0.37; 'subject:: ': 0.37; 'received:org': 0.38; 'pm,': 0.39; 'to:addr:python.org': 0.39; 'data': 0.40; 'clients': 0.60; 'charset:windows-1252': 0.65; 'subject:Data': 0.66; 'listens': 0.84; 'modes:': 0.84; "software's": 0.84 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Randall Smith Subject: Re: Pure Python Data Mangling or Encrypting Date: Wed, 01 Jul 2015 09:38:19 -0500 References: <558bc912$0$2899$c3e8da3$76491128@news.astraweb.com> <558c1a7e$0$1668$c3e8da3$5496439d@news.astraweb.com> <558d86b0$0$1659$c3e8da3$5496439d@news.astraweb.com> <558ef059$0$1673$c3e8da3$5496439d@news.astraweb.com> <5592065e$0$1675$c3e8da3$5496439d@news.astraweb.com> <5592dd34$0$1675$c3e8da3$5496439d@news.astraweb.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: c-98-251-140-107.hsd1.ms.comcast.net User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 In-Reply-To: X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ 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: 24 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1435761520 news.xs4all.nl 2845 [2001:888:2000:d::a6]:43357 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:93374 On 06/30/2015 01:33 PM, Chris Angelico wrote: > From the software's point of view, it has two distinct > modes: server, in which it listens on a socket and receives data, and > client, in which it connects to other people's sockets and sends data. > As such, the "server" mode is the only one that receives untrusted > data from another user and stores it on the hard disk. That's close. There are 3 types: storage nodes, client nodes, and control nodes. Communication: storage node <--> control node storage node <--> storage node client node --> storage node client node --> control node Data is uploaded by clients and distributed among storage nodes. Everything is coordinated by the control nodes (plural for redundancy). -Randall