1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 04:31:29 +00:00

Improve string representation of DNS query in debug output

This commit is contained in:
dmiller
2024-05-13 14:31:34 +00:00
parent e1a2577ffd
commit 37e0f7f80b
2 changed files with 7 additions and 4 deletions

View File

@@ -256,7 +256,7 @@ struct Request
std::string name;
void *userdata;
Request() : type(NONE), ssv(), name(), userdata(NULL) {}
const char *repr(); // string representation
const char *repr() const; // string representation
};
}