iw4x-client/src/Proto/auth.proto
2017-01-20 14:37:52 +01:00

19 lines
247 B
Protocol Buffer

syntax = "proto3";
package Proto.Auth;
message Certificate
{
bytes privatekey = 1;
bytes token = 2;
bytes ctoken = 3;
}
message Connect
{
bytes signature = 1;
bytes publickey = 2;
bytes token = 3;
bytes infostring = 4;
}