1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-23 02:35:57 +01:00

Fixes #99: Use uint32_t for DNS resource TTL setter

This commit is contained in:
Matias Fontanini
2015-08-22 10:59:33 -07:00
parent 891f4ac4d7
commit cec69ee261

View File

@@ -304,7 +304,7 @@ namespace Tins {
/**
* Setter for the time-to-live field.
*/
void ttl(uint16_t data) {
void ttl(uint32_t data) {
ttl_ = data;
}
private: