Codebase list golang-github-farsightsec-go-nmsg / 295e0bf7-fcee-4a91-b67a-7f08656112c4/main nmsg_base / ipconn.proto
295e0bf7-fcee-4a91-b67a-7f08656112c4/main

Tree @295e0bf7-fcee-4a91-b67a-7f08656112c4/main (Download .tar.gz)

ipconn.proto @295e0bf7-fcee-4a91-b67a-7f08656112c4/main

11a49f8
 
bd29207
11a49f8
 
 
 
 
 
 
 
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;
}