• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# SPDX-License-Identifier: GPL-2.0-only
2# This file is part of Scapy
3# See https://scapy.net/ for more information
4# Copyright (C) Andreas Korb <andreas.d.korb@gmail.com>
5# Copyright (C) Nils Weiss <nils@we155.de>
6
7# scapy.contrib.status = skip
8
9from scapy.packet import Packet
10
11
12class OBD_Packet(Packet):
13    def extract_padding(self, s):
14        return '', s
15