up vote 4 down vote favorite
2
share [g+] share [fb]

How can I extract an IP address into a string? I can't find a reference that tells me how char sa_data[14] is encoded.

link|improve this question
feedback

2 Answers

up vote 4 down vote accepted

This article explains the contents of the sockaddr struct:

http://h30097.www3.hp.com/docs/base%5Fdoc/DOCUMENTATION/V50A%5FHTML/MAN/MAN7/0052%5F%5F%5F%5F.HTM

Once cast to sockaddr_in, it becomes this:

 struct sockaddr_in {
      u_short sin_family;
      u_short sin_port;
      struct in_addr sin_addr;
      char		 sin_zero[8];
       };
link|improve this answer
feedback

Just cast the entire sockaddr structure to a sockaddr_in. Then you can use:

char *ip = inet_ntoa(their_addr.sin_addr)

To retrieve the standard ip representation.

link|improve this answer
5  
+1. Depending on platform, remember to check the family first. There may not be an IPV4 address to extract... – Steve Jessop Aug 14 '09 at 10:40
feedback

Your Answer

 
or
required, but never shown

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