• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1## This file is part of Scapy
2## See http://www.secdev.org/projects/scapy for more informations
3## Copyright (C) Philippe Biondi <phil@secdev.org>
4## This program is published under a GPLv2 license
5
6"""
7GPRS (General Packet Radio Service) for mobile data communication.
8"""
9
10from scapy.fields import *
11from scapy.packet import *
12from scapy.layers.inet import IP
13
14class GPRS(Packet):
15    name = "GPRSdummy"
16    fields_desc = [
17        StrStopField("dummy","",b"\x65\x00\x00",1)
18        ]
19
20
21bind_layers( GPRS,          IP,            )
22