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