feat: add KeepAlive packet

NGINX really doesn't like it when the client doesn't send messages
for a while. This prevents it from closing the connection.
This commit is contained in:
2023-07-15 13:20:12 +02:00
parent c12b78970c
commit 1fe4783d94
2 changed files with 12 additions and 3 deletions
+7
View File
@@ -0,0 +1,7 @@
syntax = "proto3";
// Server <-> Client
// data: any data, server ignores this
message KeepAlive {
required uint32 data = 1;
}