Socket::Linux - Socket constants defined in Linux <netinet/tcp.h>
Contents
Copyright And License
Copyright (C) 2010 by Qindel Formación y Servicios SL.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl
itself, either Perl version 5.10.1 or, at your option, any later version of Perl 5 you may have
available.
perl v5.40.0 2024-10-20 Socket::Linux(3pm)
Description
Exports to perl the constants defined in Linux <netinet/tcp.h>
Name
Socket::Linux - Socket constants defined in Linux <netinet/tcp.h>
See Also
Socket, perlfunc, tcp(7).
Synopsis
use Socket qw(IPPROTO_TCP);
use Socket::Linux qw(TCP_KEEPINTVL TCP_KEEPIDLE TCP_KEEPCNT);
setsockopt($sock, IPPROTO_TCP, TCP_KEEPIDLE, 10);
setsockopt($sock, IPPROTO_TCP, TCP_KEEPINTVL, 10);
setsockopt($sock, IPPROTO_TCP, TCP_KEEPCNT, 3);
