[![Build Status](https://travis-ci.org/lizmat/P5getnetbyname.svg?branch=master)](https://travis-ci.org/lizmat/P5getnetbyname) NAME ==== P5getnetbyname - Implement Perl 5's getnetbyname() and associated built-ins SYNOPSIS ======== use P5getnetbyname; # exports getnetbyname, getnetbyaddr, getnetent, setnetent, endnetent say getnetbyaddr(127, 2, :scalar); # something akin to loopback my @result_byname = getnetbyname("loopback"); my @result_byaddr = getnetbyaddr(|@result_byname[4,3]); DESCRIPTION =========== This module tries to mimic the behaviour of the `getnetbyname` and associated functions of Perl 5 as closely as possible. It exports by default: endnetent getnetbyname getnetbyaddr getnetent setnetent AUTHOR ====== Elizabeth Mattijsen Source can be located at: https://github.com/lizmat/P5getnetbyname . Comments and Pull Requests are welcome. COPYRIGHT AND LICENSE ===================== Copyright 2018 Elizabeth Mattijsen Re-imagined from Perl 5 as part of the CPAN Butterfly Plan. This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.