1fe4783d94
NGINX really doesn't like it when the client doesn't send messages for a while. This prevents it from closing the connection.
8 lines
132 B
Protocol Buffer
8 lines
132 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
// Server <-> Client
|
|
// data: any data, server ignores this
|
|
message KeepAlive {
|
|
required uint32 data = 1;
|
|
}
|