Server IP : 85.214.239.14 / Your IP : 13.59.58.68 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/2/root/proc/3/task/3/cwd/usr/share/perl5/Net/Server/Proto/ |
Upload File : |
# -*- perl -*- # # Net::Server::Proto::UNIXDGRAM - Net::Server Protocol module # # Copyright (C) 2001-2022 # # Paul Seamons <paul@seamons.com> # # This package may be distributed under the terms of either the # GNU General Public License # or the # Perl Artistic License # # All rights reserved. # ################################################################ package Net::Server::Proto::UNIXDGRAM; use strict; use base qw(Net::Server::Proto::UNIX); use Socket qw(SOCK_DGRAM); my @udp_args = qw( udp_recv_len udp_recv_flags udp_broadcast ); # we do broadcast just for caching parallelism with UDP.pm sub NS_proto { 'UNIXDGRAM' } sub NS_recv_len { my $sock = shift; ${*$sock}{'NS_recv_len'} = shift if @_; return ${*$sock}{'NS_recv_len'} } sub NS_recv_flags { my $sock = shift; ${*$sock}{'NS_recv_flags'} = shift if @_; return ${*$sock}{'NS_recv_flags'} } sub NS_unix_type { 'SOCK_DGRAM' } sub object { my ($class, $info, $server) = @_; my $udp = $server->{'server'}->{'udp_args'} ||= do { my %temp = map {$_ => undef} @udp_args; $server->configure({map {$_ => \$temp{$_}} @udp_args}); \%temp; }; my $len = defined($info->{'udp_recv_len'}) ? $info->{'udp_recv_len'} : defined($udp->{'udp_recv_len'}) ? $udp->{'udp_recv_len'} : 4096; $len = ($len =~ /^(\d+)$/) ? $1 : 4096; my $flg = defined($info->{'udp_recv_flags'}) ? $info->{'udp_recv_flags'} : defined($udp->{'udp_recv_flags'}) ? $udp->{'udp_recv_flags'} : 0; $flg = ($flg =~ /^(\d+)$/) ? $1 : 0; my $sock = $class->SUPER::new(); my $port = $info->{'port'} =~ m{^ ([\w\.\-\*\/]+) $ }x ? $1 : $server->fatal("Insecure filename"); $sock->NS_port($port); $sock->NS_recv_len($len); $sock->NS_recv_flags($flg); return $sock; } sub connect { my ($sock, $server) = @_; my $path = $sock->NS_port; $server->fatal("Can't connect to UNIXDGRAM socket at file $path [$!]") if -e $path && ! unlink $path; $sock->SUPER::configure({ Local => $path, Type => SOCK_DGRAM, }) or $server->fatal("Can't connect to UNIXDGRAM socket at file $path [$!]"); } 1; __END__ =head1 NAME Net::Server::Proto::UNIXDGRAM - Net::Server UNIXDGRAM protocol. =head1 SYNOPSIS See L<Net::Server::Proto>. =head1 DESCRIPTION Protocol module for Net::Server. This module implements the UNIX SOCK_DGRAM socket type. See L<Net::Server::Proto>. Any sockets created during startup will be chown'ed to the user and group specified in the startup arguments. =head1 PARAMETERS The following parameters may be specified in addition to normal command line parameters for a Net::Server. See L<Net::Server> for more information on reading arguments. =over 4 =item udp_recv_len Specifies the number of bytes to read from the SOCK_DGRAM connection handle. Data will be read into $self->{'server'}->{'udp_data'}. Default is 4096. See L<IO::Socket::INET> and L<recv>. =item udp_recv_flags See L<recv>. Default is 0. =back =head1 QUICK PARAMETER LIST Key Value Default ## UNIXDGRAM socket parameters udp_recv_len \d+ 4096 udp_recv_flags \d+ 0 =head1 LICENCE Distributed under the same terms as Net::Server =cut