13 lines
219 B
Protocol Buffer
13 lines
219 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
enum Status {
|
|
Success = 0;
|
|
InvalidSecScheme = 1;
|
|
InvalidProto = 2;
|
|
TooManySessions = 3;
|
|
InvalidArgument = 4;
|
|
InternalError = 5;
|
|
CryptoError = 6;
|
|
InvalidSession = 7;
|
|
}
|