Função setsockopt Perl

Descrição

Esta função define a opção de socket OPTNAME com um valor de OPTVAL em SOCKET no NÍVEL especificado. Você precisará importar o módulo Socket para os valores válidos para OPTNAME mostrados abaixo no Tabl

Sintaxe

A seguir está a sintaxe simples para esta função -

setsockopt SOCKET, LEVEL, OPTNAME, OPTVAL

Valor de retorno

Esta função retorna undef em caso de falha e 1 em caso de sucesso.

OPTNAME 	Description
SO_DEBUG 	Enable/disable recording of debugging information.
SO_REUSEADDR 	Enable/disable local address reuse.
SO_KEEPALIVE 	Enable/disable keep connections alive.
SO_DONTROUTE 	Enable/disable routing bypass for outgoing messages.
SO_LINGER 	Linger on close if data is present.
SO_BROADCAST 	Enable/disable permission to transmit broadcast messages.
SO_OOBINLINE 	Enable/disable reception of out-of-band data in band.
SO_SNDBUF 	Set buffer size for output.
SO_RCVBUF 	Set buffer size for input.
SO_TYPE 	Get the type of the socket (get only).
SO_ERROR 	Get and clear error on the socket (get only).