Codebase list golang-github-farsightsec-go-nmsg / 4bbb937e-4955-45e6-9c4e-0d9331b45441/main nmsg_base / pkt.proto
4bbb937e-4955-45e6-9c4e-0d9331b45441/main

Tree @4bbb937e-4955-45e6-9c4e-0d9331b45441/main (Download .tar.gz)

pkt.proto @4bbb937e-4955-45e6-9c4e-0d9331b45441/mainraw · history · blame

1
2
3
4
5
6
7
8
syntax = "proto2";
package nmsg.base;
option go_package = "github.com/farsightsec/go-nmsg/nmsg_base";

message Pkt {
    required bytes          payload = 1;
    optional uint32         len_frame = 2;
}