mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-25 16:13:54 -07:00
PB: server compiles again, standalone RemoteClient is able to log in
This commit is contained in:
parent
10018280e5
commit
d3b96b1a88
39 changed files with 988 additions and 807 deletions
10
common/pb/proto/event_server_identification.proto
Normal file
10
common/pb/proto/event_server_identification.proto
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import "session_event.proto";
|
||||
|
||||
message Event_ServerIdentification {
|
||||
extend SessionEvent {
|
||||
optional Event_ServerIdentification ext = 500;
|
||||
}
|
||||
optional string server_name = 1;
|
||||
optional string server_version = 2;
|
||||
optional uint32 protocol_version = 3;
|
||||
}
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
message SessionEvent {
|
||||
enum SessionEventType {
|
||||
SERVER_IDENTIFICATION = 500;
|
||||
SERVER_MESSAGE = 1000;
|
||||
SERVER_SHUTDOWN = 1001;
|
||||
CONNECTION_CLOSED = 1002;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue