aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/vhost/vhost_user.c
diff options
context:
space:
mode:
authorPim van Pelt <pim@ipng.nl>2024-01-15 11:06:19 +0100
committerDamjan Marion <dmarion@0xa5.net>2024-01-16 17:39:17 +0000
commit4a515d35a8702fafb1119e3dc4f969160b0e4372 (patch)
tree078f3e76448bb9f9eacadc6e5548f511b13768d4 /src/plugins/vhost/vhost_user.c
parent276cd73b754f861948a2bd8f242a09b4d9fae0dd (diff)
build: Provide clang-14 for Debian12
checkstyle.sh assumes clang-format-11 but allows it to be overridden. Debian12 ships with a minimal version of clang-14, so set the correct version for checkstyle. Before: $ make checkstyle extras/scripts/checkstyle.sh: line 41: --version: command not found make: *** [Makefile:720: checkstyle] Error 127 After: $ make checkstyle Debian clang-format version 14.0.6 ******************************************************************* * CHECKSTYLE SUCCESSFULLY COMPLETED ******************************************************************* Type: make Fixes: 712fc0308981c61444e593d6bcc2ad62102c726d Change-Id: I0c58456477011397115810dab825865b5850d10d Signed-off-by: pim@ipng.nl
Diffstat (limited to 'src/plugins/vhost/vhost_user.c')
0 files changed, 0 insertions, 0 deletions
iteral.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
## This file is part of Scapy
## See http://www.secdev.org/projects/scapy for more informations
## Copyright (C) Philippe Biondi <phil@secdev.org>
## This program is published under a GPLv2 license

"""
Aggregate top level objects from all Scapy modules.
"""

from .config import *
from .base_classes import *
from .dadict import *
from .data import *
from .error import *
#from .themes import *
from .arch import *

from .plist import *
from .fields import *
from .packet import *
#from .asn1fields import *
#from .asn1packet import *

from .utils import *
#from .route import *
#if conf.ipv6_enabled:
#    from .utils6 import *
#    from .route6 import *
#from .sendrecv import *
#from .supersocket import *
#from .volatile import *
#from .as_resolvers import *

#from .ansmachine import *
#from .automaton import *
#from .autorun import *

from .main import *

from .layers.all import *

#from .asn1.asn1 import *
#from .asn1.ber import *
#from .asn1.mib import *

#from .crypto import *

#from .pipetool import *
#from .scapypipes import *