2017-25 © Pedro Peláez
 

library ident

Rough implementation of an RFC1413 (IDENT) client

image

tigron/ident

Rough implementation of an RFC1413 (IDENT) client

  • Tuesday, February 9, 2016
  • by tigron
  • Repository
  • 3 Watchers
  • 0 Stars
  • 16 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

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., (*1)

Installation

Install this package via composer:, (*2)

composer require tigron/ident

Usage

Very simple:, (*3)

$ident = new Tigron\Ident\IdentClient();
echo $ident->getUser();
echo $ident->getOsType();

Optionally, you can, (*4)

The constructor accepts some options as well:, (*5)

$ident = new Tigron\Ident\IdentClient($remote_address, $remote_port, $local_port, $ident_port, $timeout);

Some setters are provided, for your convenience:, (*6)

$ident->setRemoteAddress($remote_address);
$ident->setRemotePort($remote_port);
$ident->setLocalPort($local_port);
$ident->setIdentPort($ident_port);
$ident->setTimeout($timeout);

The Versions

09/02 2016

dev-master

9999999-dev

Rough implementation of an RFC1413 (IDENT) client

  Sources   Download

MIT

by Gerry Demaret

09/02 2016

v0.1

0.1.0.0

Rough implementation of an RFC1413 (IDENT) client

  Sources   Download

MIT

by Gerry Demaret