Codebase list golang-github-farsightsec-go-nmsg / fresh-releases/main nmsg_base / pkt.proto
fresh-releases/main

Tree @fresh-releases/main (Download .tar.gz)

pkt.proto @fresh-releases/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;
}