File: ncap.proto

package info (click to toggle)
golang-github-farsightsec-go-nmsg 0.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid, trixie
  • size: 500 kB
  • sloc: sh: 21; makefile: 3
file content (27 lines) | stat: -rw-r--r-- 589 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
syntax = "proto2";
package nmsg.base;
option go_package = "github.com/farsightsec/go-nmsg/nmsg_base";

message Ncap {
    enum NcapType {
        IPV4 = 0;
        IPV6 = 1;
        Legacy = 2;
    }

    enum NcapLegacyType {
        UDP = 0;
        TCP = 1;
        ICMP = 2;
    }

    required NcapType       type = 1;
    required bytes          payload = 2;

    // legacy NCAP fields
    optional NcapLegacyType ltype = 3;
    optional bytes          srcip = 4;
    optional bytes          dstip = 5;
    optional uint32         lint0 = 6;
    optional uint32         lint1 = 7;
}