iw4x-client/src/Proto/auth.proto

19 lines
265 B
Protocol Buffer
Raw Normal View History

2016-08-05 18:28:51 -04:00
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;
}