标签: c networking ip-address gethostbyaddr
假设您有以下IP地址:
192.168.0.255
如何将人类可读的IP地址存储到struct in_addr?我是C级网络编程的新手,所以任何帮助都会非常感激。
struct in_addr
答案 0 :(得分:3)
你可以做到
struct in_addr p; inet_aton("192.168.0.255", &p.s_addr);