xref: /aosp_15_r20/external/scapy/bin/UTscapy (revision 7dc08ffc4802948ccbc861daaf1e81c405c2c4bd)
1*7dc08ffcSJunyu Lai#! /usr/bin/env python
2*7dc08ffcSJunyu Lai
3*7dc08ffcSJunyu Lai
4*7dc08ffcSJunyu Lai#############################################################################
5*7dc08ffcSJunyu Lai##                                                                         ##
6*7dc08ffcSJunyu Lai## UTscapy.py --- Unit Tests with scapy                                    ##
7*7dc08ffcSJunyu Lai##                see http://www.secdev.org/projects/UTscapy/              ##
8*7dc08ffcSJunyu Lai##                for more informations                                    ##
9*7dc08ffcSJunyu Lai##                                                                         ##
10*7dc08ffcSJunyu Lai## Copyright (C) 2005  Philippe Biondi <[email protected]>                   ##
11*7dc08ffcSJunyu Lai##                                                                         ##
12*7dc08ffcSJunyu Lai## This program is free software; you can redistribute it and/or modify it ##
13*7dc08ffcSJunyu Lai## under the terms of the GNU General Public License version 2 as          ##
14*7dc08ffcSJunyu Lai## published by the Free Software Foundation.                              ##
15*7dc08ffcSJunyu Lai##                                                                         ##
16*7dc08ffcSJunyu Lai## This program is distributed in the hope that it will be useful, but     ##
17*7dc08ffcSJunyu Lai## WITHOUT ANY WARRANTY; without even the implied warranty of              ##
18*7dc08ffcSJunyu Lai## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU        ##
19*7dc08ffcSJunyu Lai## General Public License for more details.                                ##
20*7dc08ffcSJunyu Lai##                                                                         ##
21*7dc08ffcSJunyu Lai#############################################################################
22*7dc08ffcSJunyu Lai
23*7dc08ffcSJunyu Lai
24*7dc08ffcSJunyu Laiimport sys
25*7dc08ffcSJunyu Laifrom scapy.tools.UTscapy import main
26*7dc08ffcSJunyu Lai
27*7dc08ffcSJunyu Laiexit(main(sys.argv[1:]))
28