Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I can not get port number when i accept with sockaddr_storage in ipv6. Here is my v4 code:

peersockfd = accept(xtcpsock_fd,(struct sockaddr*)&addr,(socklen_t*)&len);
.....
sprintf(szSocket,"%s:%d",inet_ntoa(addr.sin_addr),ntohs(addr.sin_port));

I am trying to do the same thing for v6 but sockaddr_storage doesn't have any member as port. How can i do that?

peersockfd = accept(xtcpsock6_fd, (struct sockaddr *)&their_addr, &sin_size);
.....           
inet_ntop(their_addr.ss_family, &((struct sockaddr_in6 *)&their_addr)->sin6_addr,s,sizeof s);
sprintf(szSocket,"%s:%d",s,***ntohs(their_addr.sin_port));
share|improve this question

1 Answer

For IPv6 you need to cast to sockaddr_in6 and then the member is named sin6_port rather than sin_port.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.