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


Groups > comp.lang.python > #38635

Re: Python recv loop

Date 2013-02-11 01:55 +0000
From MRAB <python@mrabarnett.plus.com>
Subject Re: Python recv loop
References <B52841CC-778D-41AF-AFCC-05A5F9C26A92@grep.my>
Newsgroups comp.lang.python
Message-ID <mailman.1617.1360547693.2939.python-list@python.org> (permalink)

Show all headers | View raw


On 2013-02-11 00:48, Ihsan Junaidi Ibrahim wrote:
> Hi,
>
> I'm implementing a python client connecting to a C-backend server and am currently stuck to as to how to proceed with receiving variable-length byte stream coming in from the server.
>
> I have coded the first 4 bytes (in hexadecimal) of message coming in from the server to specify the length of the message payload i.e. 0xad{...}
>
> I've managed to receive and translate the message length until I reach my second recv which I readjusted the buffer size to include the new message length.
>
> However that failed and recv received 0 bytes. I implemented the same algorithm on the server side using C and it work so appreciate if you can help me on this.
>
> # receive message length
>      print 'receiving data'
>      mlen = sock.recv(4)
>      try:
>          nbuf = int(mlen, 16)
>      except ValueError as e:
>          print 'invalid length type'
>          return -1
>
>      while True:
>          buf = sock.recv(nbuf)
>
>          if not buf:
>              break
>
>      slen = len(buf)
>      str = "{0} bytes received: {1}".format(slen, buf)
>      print str
>
You should keep reading until you get all need or the connection is
closed:

     buf = b''
     while len(buf) < nbuf:
         chunk = sock.recv(nbuf - len(buf))

         if not chunk:
             break

         buf += chunk

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


Thread

Re: Python recv loop MRAB <python@mrabarnett.plus.com> - 2013-02-11 01:55 +0000

csiph-web