Codebase list golang-github-farsightsec-go-nmsg / 77242633-0eb2-4fc5-8b62-1e286e797302/main nmsg_base / ipconn.proto
77242633-0eb2-4fc5-8b62-1e286e797302/main

Tree @77242633-0eb2-4fc5-8b62-1e286e797302/main (Download .tar.gz)

ipconn.proto @77242633-0eb2-4fc5-8b62-1e286e797302/mainraw · history · blame

syntax = "proto2";
package nmsg.base;
option go_package = "github.com/farsightsec/go-nmsg/nmsg_base";

message IPConn {
    optional uint32     proto = 1;
    optional bytes      srcip = 2;
    optional uint32     srcport = 3;
    optional bytes      dstip = 4;
    optional uint32     dstport = 5;
}