GETPEERNAME

NAME
SYNOPSIS
DESCRIPTION

NAME

getpeername - find the other hend of a socket connection

SYNOPSIS

getpeername SOCKET

DESCRIPTION

Returns the packed sockaddr address of other end of the SOCKET connection.

use Socket;
$hersockaddr = getpeername(SOCK);
($port, $iaddr) = unpack_sockaddr_in($hersockaddr);
$herhostname = gethostbyaddr($iaddr, AF_INET);
$herstraddr = inet_ntoa($iaddr);