MCPcopy Create free account
hub / github.com/LagrangeDev/LagrangeGo / UInt32ToIPV4Address

Function UInt32ToIPV4Address

utils/binary/utils.go:68–72  ·  view source on GitHub ↗
(i uint32)

Source from the content-addressed store, hash-verified

66}
67
68func UInt32ToIPV4Address(i uint32) string {
69 ip := net.IP{0, 0, 0, 0}
70 binary.LittleEndian.PutUint32(ip, i)
71 return ip.String()
72}

Callers 4

oidbIPv4ToNTHighwayIPv4Function · 0.92
ensureHighwayServersMethod · 0.92
highwayUploadMethod · 0.92
StringMethod · 0.92

Calls 1

StringMethod · 0.45

Tested by

no test coverage detected