获取远程地址/IP - C Berkeley Sockets
如果我连接了一个套接字文件描述符(通过连接或通过绑定),输入 SOCK_STREAM ,是否可以获得远程地址/IP 地址?
我需要在一个函数中执行此操作,其中除了套接字文件描述符之外没有任何其他数据。
If I have a socket file descriptor connected (either by connect or by bind), type SOCK_STREAM
, is it possible to get the remote address / IP address?
I need to do this within a function where I don't have any other data than the socket file descriptor.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
getpeername
getpeername
请参阅
getpeername()
系统调用。See the
getpeername()
system call.