Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixs the numbers mistake (BELL/CLIPBOARD) and padding mistake in Clipboard.write() #14

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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!'