File Coverage

blib/lib/URI/udp.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 16 16 100.0


line stmt bran cond sub pod time code
1             package URI::udp;
2 1     1   531 use strict;
  1         1  
  1         27  
3 1     1   4 use warnings;
  1         1  
  1         27  
4              
5 1     1   222 use parent qw(URI::_server);
  1         278  
  1         6  
6              
7             =head1 NAME
8              
9             URI::udp - udp connection string
10              
11             =head1 SYNOPSIS
12              
13             $uri = URI->new('udp://host:1234');
14              
15             $sock = IO::Socket::INET->new(
16             PeerAddr => $uri->host,
17             PeerPort => $uri->port',
18             Proto => $uri->protocol,
19             );
20              
21             =head1 DESCRIPTION
22              
23             URI extension for UDP protocol
24              
25             =head1 EXTENDED METHODS
26              
27             =head2 protocol()
28              
29             return I
30              
31             same as C method
32              
33             =cut
34              
35             sub protocol {
36 1     1 1 1466 my ($self) = @_;
37              
38 1         6 return $self->scheme;
39             }
40              
41             =head1 contributing
42              
43             for dependency use L...
44              
45             for resolve dependency use L (or carton - is more experimental)
46              
47             carton install
48              
49             for run test use C
50              
51             carton exec minil test
52              
53              
54             if you don't have perl environment, is best way use docker
55              
56             docker run -it -v $PWD:/tmp/work -w /tmp/work avastsoftware/perl-extended carton install
57             docker run -it -v $PWD:/tmp/work -w /tmp/work avastsoftware/perl-extended carton exec minil test
58              
59             =head2 warning
60              
61             docker run default as root, all files which will be make in docker will be have root rights
62              
63             one solution is change rights in docker
64              
65             docker run -it -v $PWD:/tmp/work -w /tmp/work avastsoftware/perl-extended bash -c "carton install; chmod -R 0777 ."
66              
67             or after docker command (but you must have root rights)
68              
69             =head1 LICENSE
70              
71             Copyright (C) Avast Software.
72              
73             This library is free software; you can redistribute it and/or modify
74             it under the same terms as Perl itself.
75              
76             =head1 AUTHOR
77              
78             Jan Seidl Eseidl@avast.comE
79              
80             =cut
81              
82             1