Sample code for 30+ languages & platforms
Perl

Bind and Listen for Incoming Connections

See more Socket/SSL/TLS Examples

Demonstrates Socket.BindAndListen, which binds a TCP listener to a port and places it into listening mode, then accepts an incoming connection.

Background. The backlog argument bounds the queue of pending connections. When ClientIpAddress is empty, the listener binds to all interfaces. After listening, call AcceptNext to accept connections.

Chilkat Perl Downloads

Perl
use chilkat();

$success = 0;

$socket = chilkat::CkSocket->new();

#  Bind a TCP listener to a port and place it into listening mode.  The 2nd argument is the backlog,
#  the maximum number of pending connections allowed to queue.
$success = $socket->BindAndListen(5000,25);
if ($success == 0) {
    print $socket->lastErrorText() . "\r\n";
    exit;
}

#  After the listener is established, accept the next incoming connection into a new Socket.
$connectedSock = chilkat::CkSocket->new();
$success = $socket->AcceptNext(20000,$connectedSock);
if ($success == 0) {
    print $socket->lastErrorText() . "\r\n";
    exit;
}

print "Accepted a connection." . "\r\n";