标签: c network-programming size-t socklen-t
从最近的Linux手册页:
const char *inet_ntop(int af, const void *src, char *dst, socklen_t size); 此函数将af地址族中的网络地址结构src转换为字符串。
const char *inet_ntop(int af, const void *src, char *dst, socklen_t size);
此函数将af地址族中的网络地址结构src转换为字符串。
size描述了内存dst的大小。
size
dst
我理解在socklen_或connect()等其他功能中使用accept() t。
socklen_
connect()
accept()
但为什么socklen_t在这里使用?-S
socklen_t
这应该是size_t!
size_t