aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storage/storageserver/rpc/protobuf/rpc_envelope.proto
blob: 20d3821f80259cb3af25bc1c6adcf0e5698c8943 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
syntax = "proto3";

option cc_enable_arenas = true;

package storage.protobuf;

message RequestHeader {
    uint64 time_remaining_ms = 1;
    uint32 trace_level = 2;
}

message ResponseHeader {
    bytes trace_payload = 1;
}