Scroll to navigation

dnsjit.lib.ip(3) Library Functions Manual dnsjit.lib.ip(3)

NAME

dnsjit.lib.ip - IP address utility library

SYNOPSIS


local ip = require("dnsjit.lib.ip")
print(ip.ipstring(ipv4_cdata))
print(ip.ip6string(ipv6_cdata), true)

DESCRIPTION

A library to help with various IP address related tasks, such as printing them.

Functions

Return an IPv4 or IPv6 address as a string. If it's an IPv6 address the optional argument pretty is true then return an easier to read IPv6 address. Return an empty string on invalid input.
Return a IPv4 address as a string. The input is a 4-byte cdata array.
Return the IPv6 address as a string. The input is a 16-byte cdata array. If pretty is true then return an easier to read IPv6 address.

SEE ALSO

dnsjit.core.object.ip(3), dnsjit.core.object.ip6(3)

AUTHORS and CONTRIBUTORS

Jerry Lundström (DNS-OARC), Tomáš Křížek (CZ.NIC), Petr Špaček (ISC)

Maintained by DNS-OARC

BUGS

For issues and feature requests please use:

For question and help please use:

admin@dns-oarc.net
1.3.0 dnsjit