python/qemu/console_socket.py: Correct type of recv()
authorJohn Snow <jsnow@redhat.com>
Tue, 6 Oct 2020 23:58:09 +0000 (19:58 -0400)
committerJohn Snow <jsnow@redhat.com>
Tue, 20 Oct 2020 13:37:57 +0000 (09:37 -0400)
commitff3513e6329ee0c2e7ea4a862c615cdb9c1ffc1b
tree6f55d166469dd84f75facd0d3ff6da3b4d5a930a
parentf12a282ff4728c8b66435eaddde589db41745beb
python/qemu/console_socket.py: Correct type of recv()

The type and parameter names of recv() should match socket.socket().

OK, easy enough, but in the cases we don't pass straight through to the
real socket implementation, we probably can't accept such flags. OK, for
now, assert that we don't receive flags in such cases.

Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Message-id: 20201006235817.3280413-13-jsnow@redhat.com
Signed-off-by: John Snow <jsnow@redhat.com>
python/qemu/console_socket.py