Changes between Version 2 and Version 3 of neercs/protocol
- Timestamp:
- 01/02/2011 03:23:32 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
neercs/protocol
v2 v3 8 8 9 9 Currently implemented: 10 * `ATTACH `:10 * `ATTACH %d %d %d`: attach client with a $1x$2 display and refresh delay $3 11 11 * `QUIT`: quit everything 12 * `DELAY `: update refresh delay13 * `RESIZE `: change display size14 * `KEY `: key press15 * `MOUSEP `: mouse button press16 * `MOUSER `: mouse button release17 * `MOUSEM `: mouse motion12 * `DELAY %d`: update refresh delay 13 * `RESIZE %d %d`: change display size 14 * `KEY %d`: key $1 pressed 15 * `MOUSEP %d %d %d`: mouse button $3 pressed at $1,$2 16 * `MOUSER %d %d %d`: mouse button $3 released at $1,$2 17 * `MOUSEM %d %d %d`: mouse motion to $1,$2 with button $3 pressed 18 18 19 19 == Server to client commands == … … 22 22 * `TITLE %d %s`: change display title for window `$1` to `"$2"` 23 23 * `CURSOR %d %d`: set cursor visibility for window `$1` to `$2` 24 * `REFRESH`: upload part of a window 24 * `UPDATE %d %d %s`: upload part of a window, caca canvas $3 starting at $1,$2 25 * `REFRESH %d %d`: refresh display, with cursor at $1,$2 (sent after all updates, when client should be consistent) 25 26 * `DETACH`