def equals(self, other): return isinstance(other, PingReport) and Report.equals(self, other)
def equals(self, other): return isinstance(other, SCTPInitReport) and Report.equals(self, other)
def __init__(self, xml): logging.info('Create Ping Report') Report.__init__(self, xml)
def equals(self, other): return isinstance(other, ConnectReport) and Report.equals(self, other)
def __init__(self, xml): logging.info('Create SCTPInit Report') Report.__init__(self, xml)
def __init__(self, xml): logging.info('Create Connect Report') Report.__init__(self, xml)
def equals(self, other): return isinstance(other, WindowReport) and Report.equals(self, other)
def __init__(self, xml): logging.info('Create WINDOW Report') Report.__init__(self, xml)
def equals(self, other): return isinstance(other, MaimonReport) and Report.equals(self, other)
def __init__(self, xml): logging.info('Create Maimon Report') Report.__init__(self, xml)