pydhcplib.strlist - Internal type of pydhcplib for lists of bytes processing.
SYNOPSIS
from pydhcplib.type_hw_addr import hwmac
a = strlist()
a = strlist([100,100,10,42,44,26])
DESCRIPTION
The class pydhcplib.strlist is an specific type of pydhcplib. It exist in order to simplify processing of raw data from network. When a dhcp packet dhcp is received, it's a succession of approximately 300 bytes. Within pydhcplib these data are
transformed in an intermediary form of type "strlist" in order to
facilitate their handling. This intermediary form will eventually be suppressed in the stable versions of pydhcplib to speedup the processing time, but backward compatibility will be assured.
The pydhcplib.strlist class creation argument can be a list of
numbers whose value goes from 0?55.
The pydhcplib.strlist class creation argument can be a string of ASCII character.
METHODS
The implemented methods in this type are mostly comparison methods (= =, >, etc...)
else :
str() convert the address into a printable string type.