summaryrefslogtreecommitdiff
path: root/src/proto/packet.proto
diff options
context:
space:
mode:
Diffstat (limited to 'src/proto/packet.proto')
-rw-r--r--src/proto/packet.proto3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/proto/packet.proto b/src/proto/packet.proto
index d27599691..c07206742 100644
--- a/src/proto/packet.proto
+++ b/src/proto/packet.proto
@@ -55,6 +55,8 @@ message PacketHeader {
// not, etc. An optional id field is added for generic use to identify
// the packet or the "owner" of the packet. An example of the latter
// is the sequential id of an instruction, or the master id etc.
+// An optional field for PC of the instruction for which this request is made
+// is provided.
message Packet {
required uint64 tick = 1;
required uint32 cmd = 2;
@@ -62,4 +64,5 @@ message Packet {
required uint32 size = 4;
optional uint32 flags = 5;
optional uint64 pkt_id = 6;
+ optional uint64 pc = 7;
}