(tools, client, server) feat: Complete ProtoBuf message transmission with both TCP and UDP

This commit is contained in:
2025-08-30 21:25:17 +08:00
parent 362aa799b9
commit 450b15e4df
13 changed files with 149 additions and 35 deletions

View File

@ -2,6 +2,13 @@ syntax = "proto3";
package protocol;
enum MessageType {
loginRequest = 0;
loginResponse = 1;
signupRequest = 2;
signupResponse = 3;
}
enum RequestResult {
Success = 0;
Fail = 1;