如何在Unix套接字编程中获取本地IP地址和端口?

时间:2012-04-16 00:52:56

标签: c sockets unix ip port

我将此作为地址来创建新服务器(socket()bind()listen()):

struct sockaddr_in newServer;
memset(&newServer, 0, sizeof(newServer));
newServer.sin_family = AF_INET;
newServer.sin_addr.s_addr = htonl(INADDR_ANY);
newServer.sin_port = htons(UNUSED_PORT);

宏UNUSED_PORT定义为0。

我希望服务器能够监听任何接口和未使用的端口。

我尝试使用getsockname()来获取我的本地IP地址和端口,但是我得到了一些奇怪的输出。输出代码如下:

struct sockaddr_in localAddress;
socklen_t addressLength;
getsockname(newServerfd, (struct sockaddr*)&localAddress,   \
                &addressLength);
printf("local address: %s\n", inet_ntoa( localAddress.sin_addr));
printf("local port: %d\n", (int) ntohs(localAddress.sin_port));

例如,我得到了0.255.255.255:0,0.0.0.0:0,255.127.0.0:36237等。 我的系统是Mac OS X 10.7.3。

- 更新 -

使用socklen_t addressLength = sizeof(localAddress);后(感谢@cnicutar和@Jonathan Leffler),我总是得到0.0.0.0的本地IP;好吗?

1 个答案:

答案 0 :(得分:6)

您需要在致电addressLength之前初始化getsockname

socklen_t addressLength = sizeof(localAddress);