< Perl Programming < Keywords

The socket keyword

The socket function opens a socket of the specified kind and attaches it to filehandle SOCKET. The DOMAIN, TYPE, and PROTOCOL are specified in the same way as for syscall.

Syntax

  socket SOCKET, DOMAIN, TYPE, PROTOCOL

Examples

use Socket;

$proto = getprotobyname("tcp");

socket(SOCK, PF_INET, SOCK_STREAM, $proto) || die "socket: $!";

Examples

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.