Codebase list golang-github-farsightsec-go-nmsg / 119fac34-eb99-4b89-bd10-103c2c0ce46f/main nmsg_base / dns.proto
119fac34-eb99-4b89-bd10-103c2c0ce46f/main

Tree @119fac34-eb99-4b89-bd10-103c2c0ce46f/main (Download .tar.gz)

dns.proto @119fac34-eb99-4b89-bd10-103c2c0ce46f/main

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

message Dns {
    optional uint32     section = 6;
    optional bytes      qname = 7;
    optional uint32     qtype = 8;
    optional uint32     qclass = 9;
    optional bytes      rrname = 1;
    optional uint32     rrtype = 2;
    optional uint32     rrclass = 3;
    optional uint32     rrttl = 4;
    repeated bytes      rdata = 5;
}