Codebase list golang-github-farsightsec-go-nmsg / run/53f3c784-7b2f-4ceb-94e3-ce341903aa2a/main nmsg_base / dns.proto
run/53f3c784-7b2f-4ceb-94e3-ce341903aa2a/main

Tree @run/53f3c784-7b2f-4ceb-94e3-ce341903aa2a/main (Download .tar.gz)

dns.proto @run/53f3c784-7b2f-4ceb-94e3-ce341903aa2a/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;
}