Home
last modified time | relevance | path

Searched refs:IPLib (Results 1 – 14 of 14) sorted by relevance

/plugin/ipban/ip-lib/
DREADME.md7 # IPLib - Handle IPv4, IPv6 and IP ranges
49 $address = \IPLib\Address\IPv4::fromString('127.0.0.1');
55 $address = \IPLib\Address\IPv6::fromString('::1');
61 $address = \IPLib\Factory::addressFromString('::1');
62 $address = \IPLib\Factory::addressFromString('127.0.0.1');
69 $address = \IPLib\Factory::addressFromString('::1');
82 $range = \IPLib\Range\Subnet::fromString('127.0.0.1/24');
83 $range = \IPLib\Range\Subnet::fromString('::1/128');
89 $range = \IPLib\Range\Pattern::fromString('127.0.0.*');
90 $range = \IPLib\Range\Pattern::fromString('::*');
[all …]
/plugin/ipban/ip-lib/src/Range/
DSingle.php3 namespace IPLib\Range;
5 use IPLib\Address\AddressInterface;
6 use IPLib\Address\IPv4;
7 use IPLib\Address\Type as AddressType;
8 use IPLib\Factory;
DPattern.php3 namespace IPLib\Range;
5 use IPLib\Address\AddressInterface;
6 use IPLib\Address\IPv4;
7 use IPLib\Address\IPv6;
8 use IPLib\Address\Type as AddressType;
9 use IPLib\Factory;
119 case $this->fromAddress instanceof \IPLib\Address\IPv4:
125 case $this->fromAddress instanceof \IPLib\Address\IPv6:
DSubnet.php3 namespace IPLib\Range;
5 use IPLib\Address\AddressInterface;
6 use IPLib\Address\IPv4;
7 use IPLib\Address\IPv6;
8 use IPLib\Address\Type as AddressType;
9 use IPLib\Factory;
DRangeInterface.php3 namespace IPLib\Range;
5 use IPLib\Address\AddressInterface;
DType.php3 namespace IPLib\Range;
/plugin/ipban/ip-lib/src/Address/
DAddressInterface.php3 namespace IPLib\Address;
5 use IPLib\Range\RangeInterface;
DIPv4.php3 namespace IPLib\Address;
5 use IPLib\Range\RangeInterface;
6 use IPLib\Range\Subnet;
7 use IPLib\Range\Type as RangeType;
DAssignedRange.php3 namespace IPLib\Address;
5 use IPLib\Range\RangeInterface;
DIPv6.php3 namespace IPLib\Address;
5 use IPLib\Range\RangeInterface;
6 use IPLib\Range\Subnet;
7 use IPLib\Range\Type as RangeType;
DType.php3 namespace IPLib\Address;
/plugin/ipban/
Daction.php71 $ip = \IPLib\Factory::addressFromString($client);
74 $ipRange = \IPLib\Factory::rangeFromString($range);
Dadmin.php31 $range = \IPLib\Factory::rangeFromString($ip);
/plugin/ipban/ip-lib/src/
DFactory.php3 namespace IPLib; namespace
5 use IPLib\Address\AddressInterface;