1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-31 03:49:01 +00:00

Use mass_dns to do forward lookups. Fixes #1451

This commit is contained in:
dmiller
2024-05-01 22:19:32 +00:00
parent cc2b798375
commit d70f66a761
5 changed files with 148 additions and 118 deletions

View File

@@ -253,7 +253,8 @@ struct Request
RECORD_TYPE type;
std::vector<struct sockaddr_storage> ssv;
std::string name;
Request() : type(NONE), ssv(), name() {}
void *userdata;
Request() : type(NONE), ssv(), name(), userdata(NULL) {}
const char *repr(); // string representation
};
}