Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions asyncvnc.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def write(self, text: str):
"""

data = text.encode('latin-1')
self.writer.write(b'\x06\x00' + len(data).to_bytes(4, 'big') + data)
self.writer.write(b'\x06\x00\x00\x00' + len(data).to_bytes(4, 'big') + data)


@dataclass
Expand Down Expand Up @@ -433,11 +433,11 @@ class UpdateType(Enum):
#: Video update.
VIDEO = 0

#: Clipboard update.
CLIPBOARD = 2

#: Bell update.
BELL = 3
BELL = 2

#: Clipboard update.
CLIPBOARD = 3


@dataclass
Expand Down
2 changes: 1 addition & 1 deletion tests/test_clipboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
def test_write():
clipboard = Clipboard(writer=BytesIO())
clipboard.write('hello world!')
assert clipboard.writer.getvalue() == b'\x06\x00\x00\x00\x00\x0chello world!'
assert clipboard.writer.getvalue() == b'\x06\x00\x00\x00\x00\x00\x00\x0chello world!'