Codebase list golang-github-farsightsec-go-nmsg / fa6df4be-b667-498a-8af3-52e1bb06183d/main nmsg_base / ncap.proto
fa6df4be-b667-498a-8af3-52e1bb06183d/main

Tree @fa6df4be-b667-498a-8af3-52e1bb06183d/main (Download .tar.gz)

ncap.proto @fa6df4be-b667-498a-8af3-52e1bb06183d/mainraw · history · blame

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;
}