ReloadHandler, TransactionalHandler, \
ListSubHandler, call
-__ALL__ = ('NatHandler', 'Error')
-
-class Error(HandlerError):
- r"""
- Error(command) -> Error instance :: Base NatHandler exception class.
-
- All exceptions raised by the NatHandler inherits from this one, so you can
- easily catch any NatHandler exception.
-
- message - A descriptive error message.
- """
- pass
+__ALL__ = ('NatHandler',)
class PortForward(Sequence):
r"""PortForward(dev, protocol, port, dst[, dst_port[, ...]]) -> PortForward.
if src_net is not None: self.src_net = src_net
if dst_net is not None: self.dst_net = dst_net
- def __cmp__(self, other):
- r"Compares two PortForward objects."
- return cmp(self.as_tuple(), other.as_tuple())
-
def as_tuple(self):
r"Return a tuple representing the port forward."
return (self.dev, self.protocol, self.port, self.dst, self.dst_port,