Skip to content

Commit

Permalink
Merge pull request #3 from google/master
Browse files Browse the repository at this point in the history
Change sequence number to uint32
  • Loading branch information
dclobato authored Dec 19, 2020
2 parents 48d7ad6 + c3f2fef commit 3a3ab49
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 68 deletions.
6 changes: 3 additions & 3 deletions lakeside/lakeside.proto
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ message BulbInfo {
}

message T1012Packet {
required int32 sequence = 1;
required uint32 sequence = 1;
required string code = 2;
optional Ping ping = 3;
optional BulbInfo bulbinfo = 5;
Expand Down Expand Up @@ -76,7 +76,7 @@ message T1013BulbInfo {
}

message T1013Packet {
required int32 sequence = 1;
required uint32 sequence = 1;
required string code = 2;
optional Ping ping = 3;
optional T1013BulbInfo bulbinfo = 5;
Expand Down Expand Up @@ -107,7 +107,7 @@ message SwitchInfo {
}

message T1201Packet {
required int32 sequence = 1;
required uint32 sequence = 1;
required string code = 2;
optional Ping ping = 3;
optional SwitchInfo switchinfo = 5;
Expand Down
Loading

0 comments on commit 3a3ab49

Please sign in to comment.