iw4x-client/src/Proto/auth.proto

18 lines
223 B
Protocol Buffer
Raw Normal View History

2016-02-21 13:57:56 -05:00
syntax = "proto3";
package Proto.Auth;
message Response
{
bytes signature = 1;
bytes publickey = 2;
2016-02-22 17:35:53 -05:00
bytes token = 3;
2016-02-21 13:57:56 -05:00
}
2016-02-22 07:37:13 -05:00
message Certificate
{
bytes privatekey = 1;
bytes token = 2;
2016-04-11 07:32:11 -04:00
bytes ctoken = 3;
2016-02-22 07:37:13 -05:00
}