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 am stuck at converting a byte array to IPv4 or IPv6. Dot for IPv4 and Dot or Colon formatted for IPv6 strings should be the end result.

Greatly appreciate if someone uses LINQ to do this, thanks!!!

share|improve this question

1 Answer

Have a look at inet_ntop().

Another option could be to use getnameinfo(), provided you appropriately fill out a struct sockaddr_storage, which is guaranteed to be large enough to be used as any struct sockaddr you can imagine.

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.