Skip to content

Fixed IPv4 & IPv6 resolution bugs

Compare
Choose a tag to compare
@cunnie cunnie released this 14 Dec 00:23
  • 🐞 fix IPv6 resolution (double dashes were matched too short) :
2601-41d0-2-e01e--56dB-3598.sSLIP.io. β†’ 2601:41d0:2:e01e::56db      (wrong)
                                      β†’ 2601:41d0:2:e01e::56db:3598 (right)
  • 🐞 fix IPv4 resolution (no longer mixes dashes and dots while parsing):
minio-01.192-168-1-100.sslip.io β†’ 1.192.168.1   (wrong)
                                β†’ 192.168.1.100 (right)

Thanks @pandaxin!