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.
|
| ||||
|
feedback
|
|
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:
| |||
|
feedback
|
|
Just cast the entire
To retrieve the standard ip representation. | |||||
feedback
|