如何取得本机IP

1.HKEY_LOCAL_MACHINE SYSTEM//CurrentControlSet//Services//Tcpip//Parameters//Interfaces//

2.char str[]={0};

  gethostname(str);

  hostent* remoteHost;
  remoteHost = gethostbyname(str);

  strcpy(IP,inet_ntoa(*(in_addr *)remoteHost->h_addr_list[0]));

 

目前就知道这两种办法。

IP记录很重要哦

你可能感兴趣的:(list)