C/C++實現一個簡單的DNS查詢服務

#include <iostream> #include <stdlib.h> #include <conio.h> #include <string> void lookupDns(std::string doname) {     std::string qd = "nslookup " + doname;     system(qd.c_str()); } int main() {    
相關文章
相關標籤/搜索