#!/usr/bin/env python3
# -*- coding: utf-8 -*-

__author__ = 'Jose Luis Verdeguer'
__version__ = '3.3'
__license__ = "GPL"
__copyright__ = "Copyright (C) 2015-2022, SIPPTS"
__email__ = "pepeluxx@gmail.com"

from sippts.sippcapdump import SipPCAPDump
from sippts.lib.params import get_sippcapdump_args


def main():
    file, ofile = get_sippcapdump_args()

    s = SipPCAPDump()
    s.file = file
    s.ofile = ofile

    s.start()


if __name__ == '__main__':
    main()
