Show
Ignore:
Timestamp:
05/18/08 01:31:52 (5 years ago)
Author:
yappo
Message:

normalize to host, port attribute

Location:
lang/perl/HTTP-Engine/trunk/lib/HTTP/Engine/Interface
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/HTTP-Engine/trunk/lib/HTTP/Engine/Interface/POE.pm

    r11811 r11817  
    99 
    1010has host => ( 
    11     is      => 'rw', 
     11    is      => 'ro', 
    1212    isa     => 'Str', 
    1313    default => '127.0.0.1', 
     
    1515 
    1616has port => ( 
    17     is => 'ro', 
    18     isa => 'Int', 
    19     required => 1, 
     17    is       => 'ro', 
     18    isa      => 'Int', 
     19    default  => 1978, 
    2020); 
    2121 
  • lang/perl/HTTP-Engine/trunk/lib/HTTP/Engine/Interface/ServerSimple.pm

    r11809 r11817  
    77 
    88has host => ( 
    9     is      => 'rw', 
     9    is      => 'ro', 
    1010    isa     => 'Str', 
    1111    default => '127.0.0.1', 
     
    1313 
    1414has port => ( 
    15     is      => 'rw', 
     15    is      => 'ro', 
    1616    isa     => 'Int', 
    17     default => 80, 
     17    default => 1978, 
    1818); 
    1919 
  • lang/perl/HTTP-Engine/trunk/lib/HTTP/Engine/Interface/Standalone.pm

    r11792 r11817  
    1111 
    1212has host => ( 
    13     is      => 'rw', 
     13    is      => 'ro', 
    1414    isa     => 'Str', 
    1515    default => '127.0.0.1', 
     
    1717 
    1818has port => ( 
    19     is      => 'rw', 
     19    is      => 'ro', 
    2020    isa     => 'Int', 
    21     default => 80, 
     21    default => 1978, 
    2222); 
    2323