add injection address to results

Change-Id: I7966f97b8c09bbd6510ca6066dd40be398b54de3
This commit is contained in:
Bjoern Doebel
2013-10-21 14:49:31 +02:00
parent 87264af79a
commit 523f4a465b
3 changed files with 5 additions and 5 deletions

View File

@ -44,14 +44,15 @@ message L4SysProtoMsg {
optional RegisterType register_offset = 3;
// instruction pointer where injection was done
optional uint32 injection_ip = 4;
optional int32 injection_ip = 4;
// result type, see above
optional ResultType resulttype = 5;
// result data, depending on resulttype (see source code)
optional uint32 resultdata = 6;
optional int32 resultdata = 6;
// generated output
optional string output = 7;
// optional textual description of what happened
optional string details = 8;
optional int32 injection_address = 9;
}
}