Download the PHP package tigron/ident without Composer
On this page you can find all versions of the php package tigron/ident. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Vendor tigron
Package ident
Short Description Rough implementation of an RFC1413 (IDENT) client
License MIT
Package ident
Short Description Rough implementation of an RFC1413 (IDENT) client
License MIT
Please rate this library. Is it a good library?
Informations about the package ident
ident
Description
This package currently implements a client for the RFC1413 (IDENT) protocol. I don't currently have plans to add a server, but making one would be trivial.
Installation
Install this package via composer:
composer require tigron/ident
Usage
Very simple:
$ident = new Tigron\Ident\IdentClient();
echo $ident->getUser();
echo $ident->getOsType();
Optionally, you can
The constructor accepts some options as well:
$ident = new Tigron\Ident\IdentClient($remote_address, $remote_port, $local_port, $ident_port, $timeout);
Some setters are provided, for your convenience:
$ident->setRemoteAddress($remote_address);
$ident->setRemotePort($remote_port);
$ident->setLocalPort($local_port);
$ident->setIdentPort($ident_port);
$ident->setTimeout($timeout);
All versions of ident with dependencies
PHP Build Version
Package Version
No informations.
The package tigron/ident contains the following files
Loading the files please wait ....