Skip to content

Commit

Permalink
docs(protocol): be consistent around events sent on the att stream
Browse files Browse the repository at this point in the history
  • Loading branch information
colinmarc committed Sep 8, 2024
1 parent 890b713 commit 161a533
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mm-protocol/src/messages.proto
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ message AudioChunk {

// ### 060 - Keyboard Input
//
// This message, which must be sent by the client on the same stream as the
// This message, which must originate from the client on the same stream as the
// original `030 - Attach` message, represents keybaord input from the user.
message KeyboardInput {
enum KeyState {
Expand Down Expand Up @@ -1003,7 +1003,7 @@ message UpdateCursor {

// ### 067 - Lock Pointer
//
// This message, which must be sent by the server on the same stream as the
// This message, which must originate from the server on the same stream as the
// original `030 - Attach` message, indicates that the pointer should be locked
// to the given location.
//
Expand All @@ -1016,15 +1016,15 @@ message LockPointer {

// ### 068 - Release Pointer
//
// This message, which must be sent by the server on the same stream as the
// This message, which must originate from the server on the same stream as the
// original `030 - Attach` message, indicates the pointer should be no longer
// be locked.
message ReleasePointer {
}

// ### 069 - Relative Pointer Motion
//
// This message, which must be sent by the client on the same stream as the
// This message, which must originate from the client on the same stream as the
// original `030 - Attach` message, indicates that the Pointer has moved.
//
// The vector should be in the space defined by the `resolution` parameter of
Expand Down

0 comments on commit 161a533

Please sign in to comment.