Exemple #1
0
 def __init__(self,submitter,tags={}):
     logging.debug("TLibMsgParser __init__")
     LogParser.__init__(self, submitter,tags)
     # buffer
     self.tlib_msg = ''
     # dictionary for SIP msg
     self.d_tlib_msg = {}
     # bool we are in sip msg
     self.in_tlib_msg = 0
Exemple #2
0
 def __init__(self, submitter, tags={}):
     logging.debug("SIPSMsgParser __init__")
     LogParser.__init__(self, submitter, tags)
     # buffer
     self.sip_msg = ''
     # dictionary for SIP msg
     self.d_sip_msg = {}
     # bool we are in sip msg
     self.in_sip_msg = 0
Exemple #3
0
 def __init__(self, submitter, tags={}):
     logging.debug("TLibMsgParser __init__")
     LogParser.__init__(self, submitter, tags)
     # buffer
     self.tlib_msg = ''
     # dictionary for SIP msg
     self.d_tlib_msg = {}
     # bool we are in sip msg
     self.in_tlib_msg = 0
     self.has_ConnID = False
     self.has_ThisDN = False
Exemple #4
0
    def __init__(self, submitter, tags={}):
        logging.debug("CSMsgParser __init__")
        LogParser.__init__(self, submitter, tags)
        # buffer
        self.cs_msg = ''
        # dictionary for current CS msg
        self.d_cs_msg = {}
        # dictonary for previous CS message TODO: do we need a full stack ?
        self.d_cs_msg_stack = []

        # bool we are in CS msg
        self.in_cs_msg = 0
        # we are handling termination (cleanup caches)
        self.in_shutdown = False
        # dictionary for messages per clients that are currently pending future processing
        self.d_cs_clients_msgs = {}
        # aux dictionary for ext auth module requests by internal reqid_exta (linked to d_cs_clients_msgs
        self.d_cs_exta_msgs = {}
        # dictonary for ext auth operations messages by ext auth endpoint
        self.d_cs_exta_intops = {}
Exemple #5
0
 def __init__(self,submitter,tags={}):
     LogParser.__init__(self, submitter,tags)
     # dictionary for SIP msg
     self.d_std_msg = {}
Exemple #6
0
 def __init__(self, submitter, tags={}):
     LogParser.__init__(self, submitter, tags)
     # dictionary for SIP msg
     self.d_std_msg = {}