Esempio n. 1
0
def parse_live():
    try:
        do_parse("device")
    finally:
        cleanups.cleanup()
Esempio n. 2
0
def parse_pcap():
    try:
        do_parse("file")
    finally:
        cleanups.cleanup()
Esempio n. 3
0
def signal_handler(signal, frame):
    print("Canceled, stopping....", file=sys.stderr)
    cleanups.cleanup()
    sys.exit(0)
Esempio n. 4
0
def parse_live():
    try:
        parse_("device")
    finally:
        cleanups.cleanup()
Esempio n. 5
0
def parse_pcap():
    try:
        parse_("file")
    finally:
        cleanups.cleanup()
Esempio n. 6
0
def signal_handler(signal, frame):
    print("Canceled, stopping....", file=sys.stderr)
    cleanups.cleanup()
    sys.exit(0)