github.com/jlmucb/cloudproxy@v0.0.0-20170830161738-b5aa0b619bc4/go/util/protorpc/protorpc.proto (about)

     1  package protorpc;
     2  
     3  // Protobuf RPC request header.
     4  message ProtoRPCRequestHeader {
     5    // The service method.
     6    required string op = 1;
     7  
     8    // The sequence number.
     9    required uint64 seq = 2;
    10  }
    11  
    12  // Protobuf RPC response header.
    13  message ProtoRPCResponseHeader {
    14    // The service method (matches request op).
    15    required string op = 1;
    16  
    17    // The sequence number (matches request seq).
    18    required uint64 seq = 2;
    19  
    20    // The optional error string.
    21    optional string error = 3;
    22  }