Changeset 3242

Show
Ignore:
Timestamp:
07/29/08 02:08:04 (5 years ago)
Author:
getxsick
Message:

IPv4 style of adresses is on.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branch/UMPA/umpa/protocols/_.py

    r3241 r3242  
    129129        return True 
    130130 
     131class IPv4AddrField(IPAddrField): 
     132    """Address in IPv4 style. 
     133    """ 
     134    separator = "." 
     135    piece_size = 8 
     136    pieces_amount = 4 
     137    base = 10 
     138 
    131139class PaddingField(IntField): 
    132140    def _is_valid(self, val):