::ffff: This is the subnet prefix for IPv4 (32-bit) addresses that fit into IPv6 (128-bit) space. IPv6 is divided into two parts: subnet prefix and interface suffix. Each of them has a length of 64 bits or 4 groups of 4 hexadecimal characters.
In IPv6, you are allowed to remove leading zeros and then remove consecutive zeros, which means that ::ffff: actually translates to 0000:0000:ffff:0000 , this address was assigned as the IPv4 subnet prefix to IPv6, so any IPv6 processor will understand how it works with an IPv4 address, and will handle it accordingly.
In the near future, all IP addresses will be IPv6, because we have almost no numbers (4.2 billion minus some space for different purposes) in the IPv4 address space.
IPv6 allows much more space. "340 ounces should be enough for everyone," says Bill Gates, speaking on IPv6.
It is important to start addressing IP addresses using the IPv6 namespace and therefore include ::ffff: in your code, because in the future there will be real hexadecimal data between these colons. If you delete it for aesthetic reasons, your code will break when it switches to an IPv6 network or encounters an IPv6 address.
Some networks currently use IPv6, and soon you will come across IPv6 IP addresses; jump now or risk breaking your code in the future.
TL; DR (short) version of the question: everything is working fine. Do not change it, this is the IPv6 version of the IPv4 address.

If you want to make your code compatible with IPv6, all you have to do is check the ::ffff: prefix ::ffff: if it exists, delete it and treat the remainder as IPv4 ... if ::ffff: didn 'It exists, this is the address IPv6 and should be handled as such. You can double-check by looking to see if there are dots in the line, if so, then this is IPv4.
Donβt forget about everything except the IP address settings that you just write down, right? It will be important to analyze and register aggregates in order to expect ::ffff:127.0.0.1 and so on in the future. If you do not need to change the IP, just leave it as what you get.