Codebase list golang-github-farsightsec-go-nmsg / b42ffe10-85cc-4b60-bb2b-1564e215832c/main nmsg_base / dns.proto
b42ffe10-85cc-4b60-bb2b-1564e215832c/main

Tree @b42ffe10-85cc-4b60-bb2b-1564e215832c/main (Download .tar.gz)

dns.proto @b42ffe10-85cc-4b60-bb2b-1564e215832c/mainraw · history · blame

syntax = "proto2";
package 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;
}