This repository has been archived on 2026-05-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ppp2-protocol/protobuf/2.0/KeepAlive.proto
T
utf 1fe4783d94 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.
2023-07-15 13:20:12 +02:00

8 lines
132 B
Protocol Buffer

syntax = "proto3";
// Server <-> Client
// data: any data, server ignores this
message KeepAlive {
required uint32 data = 1;
}