I have a struct sockaddr structure containing an IPv4-mapped-IPv6 address like ::ffff:10.0.0.1. I want to obtain only the IPv4 version of it in a string (in this case, 10.0.0.1) in C programming language. How do I go about achieving it?
|
|
|
As your structure contains an IPV6 address, I'll assume your have a You can get the address bytes easily.
Then add 12 to the pointer because the 12 first bytes are not interesting (10
Now, we can use those four bytes to do whatever we want. For example, we might store them into a IPv4
Then we can get a string using
|
|||||||||||||||
|
|
If you want to be compatible with other types of addresses, use getnameinfo.
|
|||||||||||||
|
|
Once you have recognised an IPv4 mapped address, the IPv4 portion is simply the least significant four bytes of the address. I believe that this can be done as follows:
The documentation states that the address appears in network order (most significant byte first). If this differs from you machine architecture, you need to call htonl() in order to reverse byte order. |
|||||||
|