Skip to content
Snippets Groups Projects
Commit 87f18944 authored by Pavel Doležal's avatar Pavel Doležal
Browse files

Merge branch 'fix_ttl_field' into 'master'

Make RR TTL field 4 bytes

See merge request !31
parents 9b15a86f d2e30717
No related branches found
No related tags found
1 merge request!31Make RR TTL field 4 bytes
Pipeline #123953 passed
......@@ -355,7 +355,7 @@ namespace CDNS {
index_t name_index;
index_t classtype_index;
boost::optional<uint8_t> ttl;
boost::optional<uint32_t> ttl;
boost::optional<index_t> rdata_index;
};
......
......@@ -34,7 +34,7 @@ namespace CDNS {
std::string name;
ClassType classtype;
boost::optional<uint8_t> ttl; // Not used in Question records
boost::optional<uint32_t> ttl; // Not used in Question records
boost::optional<std::string> rdata; // Not used in Question records
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment