Codebase list golang-github-farsightsec-go-nmsg / b42ffe10-85cc-4b60-bb2b-1564e215832c/main nmsg_base / ncap.proto
b42ffe10-85cc-4b60-bb2b-1564e215832c/main

Tree @b42ffe10-85cc-4b60-bb2b-1564e215832c/main (Download .tar.gz)

ncap.proto @b42ffe10-85cc-4b60-bb2b-1564e215832c/mainraw · history · blame

syntax = "proto2";
package nmsg.base;

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

enum NcapLegacyType {
    Ncap_UDP = 0;
    Ncap_TCP = 1;
    Ncap_ICMP = 2;
}

message Ncap {
    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;
}