Codebase list golang-github-farsightsec-go-nmsg / 5486bf04-752f-4267-bc6f-d478a18e933d/upstream/0.2.0-2+ds nmsg_base / dns.proto
5486bf04-752f-4267-bc6f-d478a18e933d/upstream/0.2.0-2+ds

Tree @5486bf04-752f-4267-bc6f-d478a18e933d/upstream/0.2.0-2+ds (Download .tar.gz)

dns.proto @5486bf04-752f-4267-bc6f-d478a18e933d/upstream/0.2.0-2+dsraw · history · blame

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;
}