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:
@@ -0,0 +1,7 @@
|
||||
syntax = "proto3";
|
||||
|
||||
// Server <-> Client
|
||||
// data: any data, server ignores this
|
||||
message KeepAlive {
|
||||
required uint32 data = 1;
|
||||
}
|
||||
Reference in New Issue
Block a user