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/Authentication.proto
T
2023-03-22 16:56:24 +01:00

18 lines
401 B
Protocol Buffer

syntax = "proto3";
// Client -> Server
// Request logging into the server
// seed: the seed used to generate the address
message AuthenticationRequest {
fixed64 seed = 1;
}
// Server -> Client
// Login response
// status: 0 if successful, anything else is an error
// address: the address assigned to the peer
message AuthenticationResponse {
uint32 status = 1;
fixed64 address = 2;
}