idx int64 0 251k | question stringlengths 53 3.53k | target stringlengths 5 1.23k | len_question int64 20 893 | len_target int64 3 238 |
|---|---|---|---|---|
236,200 | def corrupt_bytes ( s , p = 0.01 , n = None ) : s = bytes ( s ) s = array . array ( "B" , s ) l = len ( s ) if n is None : n = max ( 1 , int ( l * p ) ) for i in random . sample ( range ( l ) , n ) : s [ i ] = ( s [ i ] + random . randint ( 1 , 255 ) ) % 256 return s . tobytes ( ) | Corrupt a given percentage or number of bytes from bytes | 105 | 11 |
236,201 | def wireshark ( pktlist , * args ) : fname = get_temp_file ( ) wrpcap ( fname , pktlist ) subprocess . Popen ( [ conf . prog . wireshark , "-r" , fname ] + list ( args ) ) | Run wireshark on a list of packets | 62 | 9 |
236,202 | def tdecode ( pkt , * args ) : if not args : args = [ "-V" ] fname = get_temp_file ( ) wrpcap ( fname , [ pkt ] ) subprocess . call ( [ "tshark" , "-r" , fname ] + list ( args ) ) | Run tshark to decode and display the packet . If no args defined uses - V | 70 | 18 |
236,203 | def hexedit ( x ) : x = bytes ( x ) fname = get_temp_file ( ) with open ( fname , "wb" ) as f : f . write ( x ) subprocess . call ( [ conf . prog . hexedit , fname ] ) with open ( fname , "rb" ) as f : x = f . read ( ) return x | Run external hex editor on a packet or bytes . Set editor in conf . prog . hexedit | 81 | 19 |
236,204 | def _write_packet ( self , packet , sec = None , usec = None , caplen = None , wirelen = None ) : if caplen is None : caplen = len ( packet ) if wirelen is None : wirelen = caplen if sec is None or usec is None : t = time . time ( ) it = int ( t ) if sec is None : sec = it if usec is None : usec = int ( round ( ( t - it ) * 1000000 ) ) self . f . write ( struct . pack ( self . endian + "IIII" , sec , usec , caplen , wirelen ) ) self . f . write ( packet ) if self . gz and self . sync : self . f . flush ( ) | writes a single packet to the pcap file | 171 | 10 |
236,205 | def get_packet_time ( self , pkt ) : if pkt . sent_time : t = pkt . sent_time sec = int ( t ) else : t = pkt . time sec = int ( t ) usec = int ( round ( ( t - sec ) * 1000000 ) ) return ( sec , usec ) | Return the second and micro - second timestamp components for a packet . | 74 | 13 |
236,206 | def zero_mutable_fields ( pkt , sending = False ) : if pkt . haslayer ( AH ) : pkt [ AH ] . icv = chr ( 0 ) * len ( pkt [ AH ] . icv ) else : raise TypeError ( 'no AH layer found' ) if pkt . version == 4 : # the tos field has been replaced by DSCP and ECN # Routers may rewrite the DS field as needed to provide a # desired local or end-to-end service pkt . tos = 0 # an intermediate router might set the DF bit, even if the source # did not select it. pkt . flags = 0 # changed en route as a normal course of processing by routers pkt . ttl = 0 # will change if any of these other fields change pkt . chksum = 0 immutable_opts = [ ] for opt in pkt . options : if opt . option in IMMUTABLE_IPV4_OPTIONS : immutable_opts . append ( opt ) else : immutable_opts . append ( Raw ( chr ( 0 ) * len ( opt ) ) ) pkt . options = immutable_opts else : # holds DSCP and ECN pkt . tc = 0 # The flow label described in AHv1 was mutable, and in RFC 2460 [DH98] # was potentially mutable. To retain compatibility with existing AH # implementations, the flow label is not included in the ICV in AHv2. pkt . fl = 0 # same as ttl pkt . hlim = 0 next_hdr = pkt . payload while isinstance ( next_hdr , ( IPv6ExtHdrHopByHop , IPv6ExtHdrRouting , IPv6ExtHdrDestOpt ) ) : if isinstance ( next_hdr , ( IPv6ExtHdrHopByHop , IPv6ExtHdrDestOpt ) ) : for opt in next_hdr . options : if opt . otype & 0x20 : # option data can change en-route and must be zeroed opt . optdata = chr ( 0 ) * opt . optlen elif isinstance ( next_hdr , IPv6ExtHdrRouting ) and sending : # The sender must order the field so that it appears as it # will at the receiver, prior to performing the ICV computation. next_hdr . segleft = 0 if next_hdr . addresses : final = next_hdr . addresses . pop ( ) next_hdr . addresses . insert ( 0 , pkt . dst ) pkt . dst = final else : break next_hdr = next_hdr . payload return pkt | When using AH all mutable fields must be zeroed before calculating the ICV . See RFC 4302 Section 3 . 3 . 3 . 1 . Handling Mutable Fields . | 579 | 35 |
236,207 | def decrypt ( self , esp , key , icv_size = None ) : if icv_size is None : icv_size = self . icv_size if self . is_aead else 0 iv = esp . data [ : self . iv_size ] data = esp . data [ self . iv_size : len ( esp . data ) - icv_size ] icv = esp . data [ len ( esp . data ) - icv_size : ] if self . cipher : cipher = self . new_cipher ( key , iv , icv ) decryptor = cipher . decryptor ( ) if self . is_aead : # Tag value check is done during the finalize method decryptor . authenticate_additional_data ( struct . pack ( '!LL' , esp . spi , esp . seq ) ) try : data = decryptor . update ( data ) + decryptor . finalize ( ) except InvalidTag as err : raise IPSecIntegrityError ( err ) # extract padlen and nh padlen = ( data [ - 2 ] ) nh = data [ - 1 ] # then use padlen to determine data and padding data = data [ : len ( data ) - padlen - 2 ] padding = data [ len ( data ) - padlen - 2 : len ( data ) - 2 ] return _ESPPlain ( spi = esp . spi , seq = esp . seq , iv = iv , data = data , padding = padding , padlen = padlen , nh = nh , icv = icv ) | Decrypt an ESP packet | 337 | 5 |
236,208 | def igmpize ( self , ip = None , ether = None ) : # The rules are: # 1. the Max Response time is meaningful only in Membership Queries and should be zero # otherwise (RFC 2236, section 2.2) if ( self . type != 0x11 ) : #rule 1 self . mrtime = 0 if ( self . adjust_ip ( ip ) == True ) : if ( self . adjust_ether ( ip , ether ) == True ) : return True return False | Called to explicitely fixup associated IP and Ethernet headers | 106 | 13 |
236,209 | def additionalAssignment ( MobileAllocation_presence = 0 , StartingTime_presence = 0 ) : # Mandatory a = TpPd ( pd = 0x6 ) b = MessageType ( mesType = 0x3B ) # 00111011 c = ChannelDescription ( ) packet = a / b / c # Not Mandatory if MobileAllocation_presence is 1 : d = MobileAllocationHdr ( ieiMA = 0x72 , eightBitMA = 0x0 ) packet = packet / d if StartingTime_presence is 1 : e = StartingTimeHdr ( ieiST = 0x7C , eightBitST = 0x0 ) packet = packet / e return packet | ADDITIONAL ASSIGNMENT Section 9 . 1 . 1 | 152 | 12 |
236,210 | def assignmentComplete ( ) : a = TpPd ( pd = 0x6 ) b = MessageType ( mesType = 0x29 ) # 00101001 c = RrCause ( ) packet = a / b / c return packet | ASSIGNMENT COMPLETE Section 9 . 1 . 3 | 52 | 11 |
236,211 | def channelModeModify ( VgcsTargetModeIdentication_presence = 0 , MultiRateConfiguration_presence = 0 ) : a = TpPd ( pd = 0x6 ) b = MessageType ( mesType = 0x8 ) # 0001000 c = ChannelDescription2 ( ) d = ChannelMode ( ) packet = a / b / c / d if VgcsTargetModeIdentication is 1 : e = VgcsTargetModeIdenticationHdr ( ieiVTMI = 0x01 , eightBitVTMI = 0x0 ) packet = packet / e if MultiRateConfiguration is 1 : f = MultiRateConfigurationHdr ( ieiMRC = 0x03 , eightBitMRC = 0x0 ) packet = packet / f return packet | CHANNEL MODE MODIFY Section 9 . 1 . 5 | 167 | 14 |
236,212 | def channelModeModifyAcknowledge ( ) : a = TpPd ( pd = 0x6 ) b = MessageType ( mesType = 0x17 ) # 00010111 c = ChannelDescription2 ( ) d = ChannelMode ( ) packet = a / b / c / d return packet | CHANNEL MODE MODIFY ACKNOWLEDGE Section 9 . 1 . 6 | 66 | 19 |
236,213 | def channelRelease ( BaRange_presence = 0 , GroupChannelDescription_presence = 0 , GroupCipherKeyNumber_presence = 0 , GprsResumption_presence = 0 , BaListPref_presence = 0 ) : a = TpPd ( pd = 0x6 ) b = MessageType ( mesType = 0xD ) # 00001101 c = RrCause ( ) packet = a / b / c if BaRange_presence is 1 : d = BaRangeHdr ( ieiBR = 0x73 , eightBitBR = 0x0 ) packet = packet / d if GroupChannelDescription_presence is 1 : e = GroupChannelDescriptionHdr ( ieiGCD = 0x74 , eightBitGCD = 0x0 ) packet = packet / e if GroupCipherKeyNumber_presence is 1 : f = GroupCipherKeyNumber ( ieiGCKN = 0x8 ) packet = packet / f if GprsResumption_presence is 1 : g = GprsResumptionHdr ( ieiGR = 0xC , eightBitGR = 0x0 ) packet = packet / g if BaListPref_presence is 1 : h = BaListPrefHdr ( ieiBLP = 0x75 , eightBitBLP = 0x0 ) packet = packet / h return packet | CHANNEL RELEASE Section 9 . 1 . 7 | 295 | 10 |
236,214 | def cipheringModeCommand ( ) : a = TpPd ( pd = 0x6 ) b = MessageType ( mesType = 0x35 ) # 00110101 c = RrCause ( ) #d=cipherModeSetting() #e=cipherResponse() # FIX d = CipherModeSettingAndcipherResponse ( ) packet = a / b / c / d return packet | CIPHERING MODE COMMAND Section 9 . 1 . 9 | 85 | 14 |
236,215 | def cipheringModeComplete ( MobileId_presence = 0 ) : a = TpPd ( pd = 0x6 ) b = MessageType ( mesType = 0x32 ) # 00110010 packet = a / b if MobileId_presence is 1 : c = MobileIdHdr ( ieiMI = 0x17 , eightBitMI = 0x0 ) packet = packet / c return packet | CIPHERING MODE COMPLETE Section 9 . 1 . 10 | 89 | 14 |
236,216 | def classmarkChange ( MobileStationClassmark3_presence = 0 ) : a = TpPd ( pd = 0x6 ) b = MessageType ( mesType = 0x16 ) # 00010110 c = MobileStationClassmark2 ( ) packet = a / b / c if MobileStationClassmark3_presence is 1 : e = MobileStationClassmark3 ( ieiMSC3 = 0x20 ) packet = packet / e return packet | CLASSMARK CHANGE Section 9 . 1 . 11 | 101 | 11 |
236,217 | def classmarkEnquiry ( ) : a = TpPd ( pd = 0x6 ) b = MessageType ( mesType = 0x13 ) # 00010011 packet = a / b return packet | CLASSMARK ENQUIRY Section 9 . 1 . 12 | 46 | 13 |
236,218 | def configurationChangeCommand ( ChannelMode_presence = 0 , ChannelMode_presence1 = 0 , ChannelMode_presence2 = 0 , ChannelMode_presence3 = 0 , ChannelMode_presence4 = 0 , ChannelMode_presence5 = 0 , ChannelMode_presence6 = 0 , ChannelMode_presence7 = 0 ) : a = TpPd ( pd = 0x6 ) b = MessageType ( mesType = 0x30 ) # 00110000 c = MultislotAllocation ( ) packet = a / b / c if ChannelMode_presence is 1 : d = ChannelModeHdr ( ieiCM = 0x63 , eightBitCM = 0x0 ) packet = packet / d if ChannelMode_presence1 is 1 : e = ChannelModeHdr ( ieiCM = 0x11 , eightBitCM = 0x0 ) packet = packet / e if ChannelMode_presence2 is 1 : f = ChannelModeHdr ( ieiCM = 0x13 , eightBitCM = 0x0 ) packet = packet / f if ChannelMode_presence3 is 1 : g = ChannelModeHdr ( ieiCM = 0x14 , eightBitCM = 0x0 ) packet = packet / g if ChannelMode_presence4 is 1 : h = ChannelModeHdr ( ieiCM = 0x15 , eightBitCM = 0x0 ) packet = packet / h if ChannelMode_presence5 is 1 : i = ChannelModeHdr ( ieiCM = 0x16 , eightBitCM = 0x0 ) packet = packet / i if ChannelMode_presence6 is 1 : j = ChannelModeHdr ( ieiCM = 0x17 , eightBitCM = 0x0 ) packet = packet / j if ChannelMode_presence7 is 1 : k = ChannelModeHdr ( ieiCM = 0x18 , eightBitCM = 0x0 ) packet = packet / k return packet | CONFIGURATION CHANGE COMMAND Section 9 . 1 . 12b | 428 | 15 |
236,219 | def configurationChangeAcknowledge ( ) : a = TpPd ( pd = 0x6 ) b = MessageType ( mesType = 0x31 ) # 00110001 c = MobileId ( ) packet = a / b / c return packet | CONFIGURATION CHANGE ACKNOWLEDGE Section 9 . 1 . 12c | 54 | 18 |
236,220 | def frequencyRedefinition ( CellChannelDescription_presence = 0 ) : a = TpPd ( pd = 0x6 ) b = MessageType ( mesType = 0x14 ) # 00010100 c = ChannelDescription ( ) d = MobileAllocation ( ) e = StartingTime ( ) packet = a / b / c / d / e if CellChannelDescription_presence is 1 : f = CellChannelDescriptionHdr ( ieiCCD = 0x62 , eightBitCCD = 0x0 ) packet = packet / f return packet | Frequency redefinition Section 9 . 1 . 13 | 119 | 10 |
236,221 | def pdchAssignmentCommand ( ChannelDescription_presence = 0 , CellChannelDescription_presence = 0 , MobileAllocation_presence = 0 , StartingTime_presence = 0 , FrequencyList_presence = 0 , ChannelDescription_presence1 = 0 , FrequencyChannelSequence_presence = 0 , MobileAllocation_presence1 = 0 , PacketChannelDescription_presence = 0 , DedicatedModeOrTBF_presence = 0 ) : a = TpPd ( pd = 0x6 ) b = MessageType ( mesType = 0x23 ) # 00100011 c = ChannelDescription ( ) packet = a / b / c if ChannelDescription_presence is 1 : d = ChannelDescriptionHdr ( ieiCD = 0x62 , eightBitCD = 0x0 ) packet = packet / d if CellChannelDescription_presence is 1 : e = CellChannelDescriptionHdr ( ieiCCD = 0x05 , eightBitCCD = 0x0 ) packet = packet / e if MobileAllocation_presence is 1 : f = MobileAllocationHdr ( ieiMA = 0x72 , eightBitMA = 0x0 ) packet = packet / f if StartingTime_presence is 1 : g = StartingTimeHdr ( ieiST = 0x7C , eightBitST = 0x0 ) packet = packet / g if FrequencyList_presence is 1 : h = FrequencyListHdr ( ieiFL = 0x19 , eightBitFL = 0x0 ) packet = packet / h if ChannelDescription_presence1 is 1 : i = ChannelDescriptionHdr ( ieiCD = 0x1C , eightBitCD = 0x0 ) packet = packet / i if FrequencyChannelSequence_presence is 1 : j = FrequencyChannelSequenceHdr ( ieiFCS = 0x1E , eightBitFCS = 0x0 ) packet = packet / j if MobileAllocation_presence1 is 1 : k = MobileAllocationHdr ( ieiMA = 0x21 , eightBitMA = 0x0 ) packet = packet / k if PacketChannelDescription_presence is 1 : l = PacketChannelDescription ( ieiPCD = 0x22 ) packet = packet / l if DedicatedModeOrTBF_presence is 1 : m = DedicatedModeOrTBFHdr ( ieiDMOT = 0x23 , eightBitDMOT = 0x0 ) packet = packet / m return packet | PDCH ASSIGNMENT COMMAND Section 9 . 1 . 13a | 540 | 14 |
236,222 | def gprsSuspensionRequest ( ) : a = TpPd ( pd = 0x6 ) b = MessageType ( ) c = Tlli ( ) d = RoutingAreaIdentification ( ) e = SuspensionCause ( ) packet = a / b / c / d / e return packet | GPRS SUSPENSION REQUEST Section 9 . 1 . 13b | 66 | 17 |
236,223 | def handoverComplete ( MobileTimeDifference_presence = 0 ) : a = TpPd ( pd = 0x6 ) b = MessageType ( mesType = 0x2c ) # 00101100 c = RrCause ( ) packet = a / b / c if MobileTimeDifference_presence is 1 : d = MobileTimeDifferenceHdr ( ieiMTD = 0x77 , eightBitMTD = 0x0 ) packet = packet / d return packet | HANDOVER COMPLETE Section 9 . 1 . 16 | 106 | 11 |
236,224 | def immediateAssignment ( ChannelDescription_presence = 0 , PacketChannelDescription_presence = 0 , StartingTime_presence = 0 ) : a = L2PseudoLength ( ) b = TpPd ( pd = 0x6 ) c = MessageType ( mesType = 0x3F ) # 00111111 d = PageModeAndDedicatedModeOrTBF ( ) packet = a / b / c / d if ChannelDescription_presence is 1 : f = ChannelDescription ( ) packet = packet / f if PacketChannelDescription_presence is 1 : g = PacketChannelDescription ( ) packet = packet / g h = RequestReference ( ) i = TimingAdvance ( ) j = MobileAllocation ( ) packet = packet / h / i / j if StartingTime_presence is 1 : k = StartingTimeHdr ( ieiST = 0x7C , eightBitST = 0x0 ) packet = packet / k l = IaRestOctets ( ) packet = packet / l return packet | IMMEDIATE ASSIGNMENT Section 9 . 1 . 18 | 224 | 13 |
236,225 | def immediateAssignmentExtended ( StartingTime_presence = 0 ) : a = L2PseudoLength ( ) b = TpPd ( pd = 0x6 ) c = MessageType ( mesType = 0x39 ) # 00111001 d = PageModeAndSpareHalfOctets ( ) f = ChannelDescription ( ) g = RequestReference ( ) h = TimingAdvance ( ) i = MobileAllocation ( ) packet = a / b / c / d / f / g / h / i if StartingTime_presence is 1 : j = StartingTimeHdr ( ieiST = 0x7C , eightBitST = 0x0 ) packet = packet / j k = IaxRestOctets ( ) packet = packet / k return packet | IMMEDIATE ASSIGNMENT EXTENDED Section 9 . 1 . 19 | 166 | 15 |
236,226 | def immediateAssignmentReject ( ) : a = L2PseudoLength ( l2pLength = 0x13 ) b = TpPd ( pd = 0x6 ) c = MessageType ( mesType = 0x3a ) # 00111010 d = PageModeAndSpareHalfOctets ( ) f = RequestReference ( ) g = WaitIndication ( ) h = RequestReference ( ) i = WaitIndication ( ) j = RequestReference ( ) k = WaitIndication ( ) l = RequestReference ( ) m = WaitIndication ( ) n = IraRestOctets ( ) packet = a / b / c / d / f / g / h / i / j / k / l / m / n return packet | IMMEDIATE ASSIGNMENT REJECT Section 9 . 1 . 20 | 161 | 15 |
236,227 | def measurementReport ( ) : a = TpPd ( pd = 0x6 ) b = MessageType ( mesType = 0x15 ) # 00010101 c = MeasurementResults ( ) packet = a / b / c return packet | MEASUREMENT REPORT Section 9 . 1 . 21 | 53 | 11 |
236,228 | def notificationResponse ( ) : a = TpPd ( pd = 0x6 ) b = MessageType ( mesType = 0x26 ) # 00100110 c = MobileStationClassmark2 ( ) d = MobileId ( ) e = DescriptiveGroupOrBroadcastCallReference ( ) packet = a / b / c / d / e return packet | NOTIFICATION RESPONSE Section 9 . 1 . 21d | 77 | 13 |
236,229 | def rrCellChangeOrder ( ) : a = TpPd ( pd = 0x6 ) b = MessageType ( mesType = 0x8 ) # 00001000 c = CellDescription ( ) d = NcModeAndSpareHalfOctets ( ) packet = a / b / c / d return packet | RR - CELL CHANGE ORDER Section 9 . 1 . 21e | 68 | 14 |
236,230 | def pagingRequestType1 ( MobileId_presence = 0 ) : #The L2 pseudo length of this message is the sum of lengths of all #information elements present in the message except #the P1 Rest Octets and L2 Pseudo Length information elements. a = L2PseudoLength ( ) b = TpPd ( pd = 0x6 ) c = MessageType ( mesType = 0x21 ) # 00100001 d = PageModeAndChannelNeeded ( ) f = MobileId ( ) packet = a / b / c / d / f if MobileId_presence is 1 : g = MobileIdHdr ( ieiMI = 0x17 , eightBitMI = 0x0 ) packet = packet / g h = P1RestOctets ( ) packet = packet / h return packet | PAGING REQUEST TYPE 1 Section 9 . 1 . 22 | 176 | 13 |
236,231 | def pagingRequestType2 ( MobileId_presence = 0 ) : a = L2PseudoLength ( ) b = TpPd ( pd = 0x6 ) c = MessageType ( mesType = 0x22 ) # 00100010 d = PageModeAndChannelNeeded ( ) f = MobileId ( ) g = MobileId ( ) packet = a / b / c / d / f / g if MobileId_presence is 1 : h = MobileIdHdr ( ieiMI = 0x17 , eightBitMI = 0x0 ) packet = packet / h i = P2RestOctets ( ) packet = packet / i return packet | PAGING REQUEST TYPE 2 Section 9 . 1 . 23 | 144 | 13 |
236,232 | def pagingRequestType3 ( ) : # This message has a L2 Pseudo Length of 19 a = L2PseudoLength ( l2pLength = 0x13 ) b = TpPd ( pd = 0x6 ) c = MessageType ( mesType = 0x24 ) # 00100100 d = PageModeAndChannelNeeded ( ) e = TmsiPTmsi ( ) f = TmsiPTmsi ( ) g = TmsiPTmsi ( ) h = TmsiPTmsi ( ) i = P3RestOctets ( ) packet = a / b / c / d / e / f / g / h / i return packet | PAGING REQUEST TYPE 3 Section 9 . 1 . 24 | 149 | 13 |
236,233 | def pagingResponse ( ) : a = TpPd ( pd = 0x6 ) b = MessageType ( mesType = 0x27 ) # 00100111 c = CiphKeySeqNrAndSpareHalfOctets ( ) d = MobileStationClassmark2 ( ) e = MobileId ( ) packet = a / b / c / d / e return packet | PAGING RESPONSE Section 9 . 1 . 25 | 82 | 12 |
236,234 | def partialRelease ( ) : a = TpPd ( pd = 0x6 ) b = MessageType ( mesType = 0xa ) # 00001010 c = ChannelDescription ( ) packet = a / b / c return packet | PARTIAL RELEASE Section 9 . 1 . 26 | 50 | 9 |
236,235 | def partialReleaseComplete ( ) : a = TpPd ( pd = 0x6 ) b = MessageType ( mesType = 0xf ) # 00001111 packet = a / b return packet | PARTIAL RELEASE COMPLETE Section 9 . 1 . 27 | 42 | 11 |
236,236 | def physicalInformation ( ) : a = TpPd ( pd = 0x6 ) b = MessageType ( mesType = 0x2d ) # 00101101 c = TimingAdvance ( ) packet = a / b / c return packet | PHYSICAL INFORMATION Section 9 . 1 . 28 | 54 | 10 |
236,237 | def rrInitialisationRequest ( ) : a = TpPd ( pd = 0x6 ) b = MessageType ( mesType = 0x3c ) # 00111100 c = CiphKeySeqNrAndMacModeAndChannelCodingRequest ( ) e = MobileStationClassmark2 ( ) f = Tlli ( ) g = ChannelRequestDescription ( ) h = GprsMeasurementResults ( ) packet = a / b / c / e / f / g / h return packet | RR Initialisation Request Section 9 . 1 . 28 . a | 108 | 12 |
236,238 | def systemInformationType1 ( ) : a = L2PseudoLength ( l2pLength = 0x15 ) b = TpPd ( pd = 0x6 ) c = MessageType ( mesType = 0x19 ) # 00011001 d = CellChannelDescription ( ) e = RachControlParameters ( ) f = Si1RestOctets ( ) packet = a / b / c / d / e / f return packet | SYSTEM INFORMATION TYPE 1 Section 9 . 1 . 31 | 95 | 11 |
236,239 | def systemInformationType2 ( ) : a = L2PseudoLength ( l2pLength = 0x16 ) b = TpPd ( pd = 0x6 ) c = MessageType ( mesType = 0x1a ) # 00011010 d = NeighbourCellsDescription ( ) e = NccPermitted ( ) f = RachControlParameters ( ) packet = a / b / c / d / e / f return packet | SYSTEM INFORMATION TYPE 2 Section 9 . 1 . 32 | 98 | 11 |
236,240 | def systemInformationType2bis ( ) : a = L2PseudoLength ( l2pLength = 0x15 ) b = TpPd ( pd = 0x6 ) c = MessageType ( mesType = 0x2 ) # 00000010 d = NeighbourCellsDescription ( ) e = RachControlParameters ( ) f = Si2bisRestOctets ( ) packet = a / b / c / d / e / f return packet | SYSTEM INFORMATION TYPE 2bis Section 9 . 1 . 33 | 98 | 12 |
236,241 | def systemInformationType2ter ( ) : a = L2PseudoLength ( l2pLength = 0x12 ) b = TpPd ( pd = 0x6 ) c = MessageType ( mesType = 0x3 ) # 00000011 d = NeighbourCellsDescription2 ( ) e = Si2terRestOctets ( ) packet = a / b / c / d / e return packet | SYSTEM INFORMATION TYPE 2ter Section 9 . 1 . 34 | 89 | 12 |
236,242 | def systemInformationType3 ( ) : a = L2PseudoLength ( l2pLength = 0x12 ) b = TpPd ( pd = 0x6 ) c = MessageType ( mesType = 0x1b ) # 00011011 d = CellIdentity ( ) e = LocalAreaId ( ) f = ControlChannelDescription ( ) g = CellOptionsBCCH ( ) h = CellSelectionParameters ( ) i = RachControlParameters ( ) j = Si3RestOctets ( ) packet = a / b / c / d / e / f / g / h / i / j return packet | SYSTEM INFORMATION TYPE 3 Section 9 . 1 . 35 | 135 | 11 |
236,243 | def systemInformationType4 ( ChannelDescription_presence = 0 , MobileAllocation_presence = 0 ) : a = L2PseudoLength ( ) b = TpPd ( pd = 0x6 ) c = MessageType ( mesType = 0x1C ) # 000111100 d = LocalAreaId ( ) e = CellSelectionParameters ( ) f = RachControlParameters ( ) packet = a / b / c / d / e / f if ChannelDescription_presence is 1 : g = ChannelDescriptionHdr ( ieiCD = 0x64 , eightBitCD = 0x0 ) packet = packet / g if MobileAllocation_presence is 1 : h = MobileAllocationHdr ( ieiMA = 0x72 , eightBitMA = 0x0 ) packet = packet / h i = Si4RestOctets ( ) packet = packet / i return packet | SYSTEM INFORMATION TYPE 4 Section 9 . 1 . 36 | 194 | 11 |
236,244 | def systemInformationType5bis ( ) : a = L2PseudoLength ( l2pLength = 0x12 ) b = TpPd ( pd = 0x6 ) c = MessageType ( mesType = 0x5 ) # 00000101 d = NeighbourCellsDescription ( ) packet = a / b / c / d return packet | SYSTEM INFORMATION TYPE 5bis Section 9 . 1 . 38 | 77 | 12 |
236,245 | def systemInformationType5ter ( ) : a = L2PseudoLength ( l2pLength = 0x12 ) b = TpPd ( pd = 0x6 ) c = MessageType ( mesType = 0x6 ) # 00000110 d = NeighbourCellsDescription2 ( ) packet = a / b / c / d return packet | SYSTEM INFORMATION TYPE 5ter Section 9 . 1 . 39 | 78 | 12 |
236,246 | def systemInformationType6 ( ) : a = L2PseudoLength ( l2pLength = 0x0b ) b = TpPd ( pd = 0x6 ) c = MessageType ( mesType = 0x1e ) # 00011011 d = CellIdentity ( ) e = LocalAreaId ( ) f = CellOptionsBCCH ( ) g = NccPermitted ( ) h = Si6RestOctets ( ) packet = a / b / c / d / e / f / g return packet | SYSTEM INFORMATION TYPE 6 Section 9 . 1 . 40 | 115 | 11 |
236,247 | def systemInformationType7 ( ) : a = L2PseudoLength ( l2pLength = 0x01 ) b = TpPd ( pd = 0x6 ) c = MessageType ( mesType = 0x37 ) # 000110111 d = Si7RestOctets ( ) packet = a / b / c / d return packet | SYSTEM INFORMATION TYPE 7 Section 9 . 1 . 41 | 77 | 11 |
236,248 | def systemInformationType8 ( ) : a = L2PseudoLength ( l2pLength = 0x01 ) b = TpPd ( pd = 0x6 ) c = MessageType ( mesType = 0x18 ) # 00011000 d = Si8RestOctets ( ) packet = a / b / c / d return packet | SYSTEM INFORMATION TYPE 8 Section 9 . 1 . 42 | 76 | 11 |
236,249 | def systemInformationType9 ( ) : a = L2PseudoLength ( l2pLength = 0x01 ) b = TpPd ( pd = 0x6 ) c = MessageType ( mesType = 0x4 ) # 00000100 d = Si9RestOctets ( ) packet = a / b / c / d return packet | SYSTEM INFORMATION TYPE 9 Section 9 . 1 . 43 | 75 | 11 |
236,250 | def systemInformationType13 ( ) : a = L2PseudoLength ( l2pLength = 0x00 ) b = TpPd ( pd = 0x6 ) c = MessageType ( mesType = 0x0 ) # 00000000 d = Si13RestOctets ( ) packet = a / b / c / d return packet | SYSTEM INFORMATION TYPE 13 Section 9 . 1 . 43a | 74 | 12 |
236,251 | def systemInformationType16 ( ) : a = L2PseudoLength ( l2pLength = 0x01 ) b = TpPd ( pd = 0x6 ) c = MessageType ( mesType = 0x3d ) # 00111101 d = Si16RestOctets ( ) packet = a / b / c / d return packet | SYSTEM INFORMATION TYPE 16 Section 9 . 1 . 43d | 77 | 12 |
236,252 | def systemInformationType17 ( ) : a = L2PseudoLength ( l2pLength = 0x01 ) b = TpPd ( pd = 0x6 ) c = MessageType ( mesType = 0x3e ) # 00111110 d = Si17RestOctets ( ) packet = a / b / c / d return packet | SYSTEM INFORMATION TYPE 17 Section 9 . 1 . 43e | 77 | 12 |
236,253 | def talkerIndication ( ) : a = TpPd ( pd = 0x6 ) b = MessageType ( mesType = 0x11 ) # 00010001 c = MobileStationClassmark2 ( ) d = MobileId ( ) packet = a / b / c / d return packet | TALKER INDICATION Section 9 . 1 . 44 | 64 | 12 |
236,254 | def uplinkBusy ( ) : name = "Uplink Busy" a = TpPd ( pd = 0x6 ) b = MessageType ( mesType = 0x2a ) # 00101010 packet = a / b return packet | UPLINK BUSY Section 9 . 1 . 46 | 55 | 11 |
236,255 | def vgcsUplinkGrant ( ) : a = TpPd ( pd = 0x6 ) b = MessageType ( mesType = 0x9 ) # 00001001 c = RrCause ( ) d = RequestReference ( ) e = TimingAdvance ( ) packet = a / b / c / d / e return packet | VGCS UPLINK GRANT Section 9 . 1 . 49 | 74 | 13 |
236,256 | def extendedMeasurementOrder ( ) : a = L2PseudoLength ( l2pLength = 0x12 ) b = TpPd ( pd = 0x6 ) c = MessageType ( mesType = 0x37 ) # 00110111 d = ExtendedMeasurementFrequencyList ( ) packet = a / b / c / d return packet | EXTENDED MEASUREMENT ORDER Section 9 . 1 . 51 | 78 | 13 |
236,257 | def extendedMeasurementReport ( ) : a = TpPd ( pd = 0x6 ) b = MessageType ( mesType = 0x36 ) # 00110110 c = ExtendedMeasurementResults ( ) packet = a / b / c return packet | EXTENDED MEASUREMENT REPORT Section 9 . 1 . 52 | 56 | 13 |
236,258 | def applicationInformation ( ) : a = TpPd ( pd = 0x6 ) b = MessageType ( mesType = 0x38 ) # 00111000 c = ApduIDAndApduFlags ( ) e = ApduData ( ) packet = a / b / c / e return packet | APPLICATION INFORMATION Section 9 . 1 . 53 | 65 | 10 |
236,259 | def authenticationReject ( ) : a = TpPd ( pd = 0x5 ) b = MessageType ( mesType = 0x11 ) # 00010001 packet = a / b return packet | AUTHENTICATION REJECT Section 9 . 2 . 1 | 44 | 13 |
236,260 | def authenticationRequest ( ) : a = TpPd ( pd = 0x5 ) b = MessageType ( mesType = 0x12 ) # 00010010 c = CiphKeySeqNrAndSpareHalfOctets ( ) d = AuthenticationParameterRAND ( ) packet = a / b / c / d return packet | AUTHENTICATION REQUEST Section 9 . 2 . 2 | 72 | 13 |
236,261 | def authenticationResponse ( ) : a = TpPd ( pd = 0x5 ) b = MessageType ( mesType = 0x14 ) # 00010100 c = AuthenticationParameterSRES ( ) packet = a / b / c return packet | AUTHENTICATION RESPONSE Section 9 . 2 . 3 | 53 | 14 |
236,262 | def cmReestablishmentRequest ( LocalAreaId_presence = 0 ) : a = TpPd ( pd = 0x5 ) b = MessageType ( mesType = 0x28 ) # 00101000 c = CiphKeySeqNrAndSpareHalfOctets ( ) e = MobileStationClassmark2 ( ) f = MobileId ( ) if LocalAreaId_presence is 1 : g = LocalAreaId ( iei = 0x13 , eightbit = 0x0 ) packet = packet / g packet = a / b / c / e / f return packet | CM RE - ESTABLISHMENT REQUEST Section 9 . 2 . 4 | 126 | 16 |
236,263 | def cmServiceAccept ( ) : a = TpPd ( pd = 0x5 ) b = MessageType ( mesType = 0x21 ) # 00100001 packet = a / b return packet | CM SERVICE ACCEPT Section 9 . 2 . 5 | 44 | 11 |
236,264 | def cmServicePrompt ( ) : a = TpPd ( pd = 0x5 ) b = MessageType ( mesType = 0x25 ) # 00100101 c = PdAndSapi ( ) packet = a / b / c return packet | CM SERVICE PROMPT Section 9 . 2 . 5a | 56 | 12 |
236,265 | def cmServiceAbort ( ) : a = TpPd ( pd = 0x5 ) b = MessageType ( mesType = 0x23 ) # 00100011 packet = a / b return packet | CM SERVICE ABORT Section 9 . 2 . 7 | 45 | 10 |
236,266 | def abort ( ) : a = TpPd ( pd = 0x5 ) b = MessageType ( mesType = 0x29 ) # 00101001 c = RejectCause ( ) packet = a / b / c return packet | ABORT Section 9 . 2 . 8 | 51 | 8 |
236,267 | def cmServiceRequest ( PriorityLevel_presence = 0 ) : a = TpPd ( pd = 0x5 ) b = MessageType ( mesType = 0x24 ) # 00100100 c = CmServiceTypeAndCiphKeySeqNr ( ) e = MobileStationClassmark2 ( ) f = MobileId ( ) packet = a / b / c / e / f if PriorityLevel_presence is 1 : g = PriorityLevelHdr ( ieiPL = 0x8 , eightBitPL = 0x0 ) packet = packet / g return packet | CM SERVICE REQUEST Section 9 . 2 . 9 | 125 | 10 |
236,268 | def identityRequest ( ) : a = TpPd ( pd = 0x5 ) b = MessageType ( mesType = 0x8 ) # 00001000 c = IdentityTypeAndSpareHalfOctets ( ) packet = a / b / c return packet | IDENTITY REQUEST Section 9 . 2 . 10 | 56 | 10 |
236,269 | def imsiDetachIndication ( ) : a = TpPd ( pd = 0x5 ) b = MessageType ( mesType = 0x1 ) # 00000001 c = MobileStationClassmark1 ( ) d = MobileId ( ) packet = a / b / c / d return packet | IMSI DETACH INDICATION Section 9 . 2 . 12 | 65 | 13 |
236,270 | def locationUpdatingAccept ( MobileId_presence = 0 , FollowOnProceed_presence = 0 , CtsPermission_presence = 0 ) : a = TpPd ( pd = 0x5 ) b = MessageType ( mesType = 0x02 ) # 00000010 c = LocalAreaId ( ) packet = a / b / c if MobileId_presence is 1 : d = MobileIdHdr ( ieiMI = 0x17 , eightBitMI = 0x0 ) packet = packet / d if FollowOnProceed_presence is 1 : e = FollowOnProceed ( ieiFOP = 0xA1 ) packet = packet / e if CtsPermission_presence is 1 : f = CtsPermissionHdr ( ieiCP = 0xA2 , eightBitCP = 0x0 ) packet = packet / f return packet | LOCATION UPDATING ACCEPT Section 9 . 2 . 13 | 192 | 14 |
236,271 | def locationUpdatingRequest ( ) : a = TpPd ( pd = 0x5 ) b = MessageType ( mesType = 0x8 ) # 00001000 c = LocationUpdatingTypeAndCiphKeySeqNr ( ) e = LocalAreaId ( ) f = MobileStationClassmark1 ( ) g = MobileId ( ) packet = a / b / c / e / f / g return packet | LOCATION UPDATING REQUEST Section 9 . 2 . 15 | 90 | 13 |
236,272 | def mmInformation ( NetworkName_presence = 0 , NetworkName_presence1 = 0 , TimeZone_presence = 0 , TimeZoneAndTime_presence = 0 , LsaIdentifier_presence = 0 ) : a = TpPd ( pd = 0x5 ) b = MessageType ( mesType = 0x32 ) # 00110010 packet = a / b if NetworkName_presence is 1 : c = NetworkNameHdr ( ieiNN = 0x43 , eightBitNN = 0x0 ) packet = packet / c if NetworkName_presence1 is 1 : d = NetworkNameHdr ( ieiNN = 0x45 , eightBitNN = 0x0 ) packet = packet / d if TimeZone_presence is 1 : e = TimeZoneHdr ( ieiTZ = 0x46 , eightBitTZ = 0x0 ) packet = packet / e if TimeZoneAndTime_presence is 1 : f = TimeZoneAndTimeHdr ( ieiTZAT = 0x47 , eightBitTZAT = 0x0 ) packet = packet / f if LsaIdentifier_presence is 1 : g = LsaIdentifierHdr ( ieiLI = 0x48 , eightBitLI = 0x0 ) packet = packet / g return packet | MM INFORMATION Section 9 . 2 . 15a | 287 | 9 |
236,273 | def tmsiReallocationCommand ( ) : a = TpPd ( pd = 0x5 ) b = MessageType ( mesType = 0x1a ) # 00011010 c = LocalAreaId ( ) d = MobileId ( ) packet = a / b / c / d return packet | TMSI REALLOCATION COMMAND Section 9 . 2 . 17 | 67 | 15 |
236,274 | def tmsiReallocationComplete ( ) : a = TpPd ( pd = 0x5 ) b = MessageType ( mesType = 0x1b ) # 00011011 packet = a / b return packet | TMSI REALLOCATION COMPLETE Section 9 . 2 . 18 | 50 | 15 |
236,275 | def mmNull ( ) : a = TpPd ( pd = 0x5 ) b = MessageType ( mesType = 0x30 ) # 00110000 packet = a / b return packet | MM NULL Section 9 . 2 . 19 | 43 | 8 |
236,276 | def alertingNetToMs ( Facility_presence = 0 , ProgressIndicator_presence = 0 , UserUser_presence = 0 ) : a = TpPd ( pd = 0x3 ) b = MessageType ( mesType = 0x1 ) # 00000001 packet = a / b if Facility_presence is 1 : c = FacilityHdr ( ieiF = 0x1C ) packet = packet / c if ProgressIndicator_presence is 1 : d = ProgressIndicatorHdr ( ieiPI = 0x1E ) packet = packet / d if UserUser_presence is 1 : e = UserUserHdr ( ieiUU = 0x7E ) packet = packet / e return packet | ALERTING Section 9 . 3 . 1 . 1 | 158 | 11 |
236,277 | def callConfirmed ( RepeatIndicator_presence = 0 , BearerCapability_presence = 0 , BearerCapability_presence1 = 0 , Cause_presence = 0 , CallControlCapabilities_presence = 0 ) : a = TpPd ( pd = 0x3 ) b = MessageType ( mesType = 0x8 ) # 00001000 packet = a / b if RepeatIndicator_presence is 1 : c = RepeatIndicatorHdr ( ieiRI = 0xD , eightBitRI = 0x0 ) packet = packet / c if BearerCapability_presence is 1 : d = BearerCapabilityHdr ( ieiBC = 0x04 , eightBitBC = 0x0 ) packet = packet / d if BearerCapability_presence1 is 1 : e = BearerCapabilityHdr ( ieiBC = 0x04 , eightBitBC = 0x0 ) packet = packet / e if Cause_presence is 1 : f = CauseHdr ( ieiC = 0x08 , eightBitC = 0x0 ) packet = packet / f if CallControlCapabilities_presence is 1 : g = CallControlCapabilitiesHdr ( ieiCCC = 0x15 , eightBitCCC = 0x0 ) packet = packet / g return packet | CALL CONFIRMED Section 9 . 3 . 2 | 287 | 11 |
236,278 | def callProceeding ( RepeatIndicator_presence = 0 , BearerCapability_presence = 0 , BearerCapability_presence1 = 0 , Facility_presence = 0 , ProgressIndicator_presence = 0 , PriorityLevel_presence = 0 ) : a = TpPd ( pd = 0x3 ) b = MessageType ( mesType = 0x2 ) # 00000010 packet = a / b if RepeatIndicator_presence is 1 : c = RepeatIndicatorHdr ( ieiRI = 0xD , eightBitRI = 0x0 ) packet = packet / c if BearerCapability_presence is 1 : d = BearerCapabilityHdr ( ieiBC = 0x04 , eightBitBC = 0x0 ) packet = packet / d if BearerCapability_presence1 is 1 : e = BearerCapabilityHdr ( ieiBC = 0x04 , eightBitBC = 0x0 ) packet = packet / e if Facility_presence is 1 : f = FacilityHdr ( ieiF = 0x1C , eightBitF = 0x0 ) packet = packet / f if ProgressIndicator_presence is 1 : g = ProgressIndicatorHdr ( ieiPI = 0x1E , eightBitPI = 0x0 ) packet = packet / g if PriorityLevel_presence is 1 : h = PriorityLevelHdr ( ieiPL = 0x80 , eightBitPL = 0x0 ) packet = packet / h return packet | CALL PROCEEDING Section 9 . 3 . 3 | 332 | 11 |
236,279 | def congestionControl ( Cause_presence = 0 ) : a = TpPd ( pd = 0x3 ) b = MessageType ( mesType = 0x39 ) # 00111001 c = CongestionLevelAndSpareHalfOctets ( ) packet = a / b / c if Cause_presence is 1 : e = CauseHdr ( ieiC = 0x08 , eightBitC = 0x0 ) packet = packet / e return packet | CONGESTION CONTROL Section 9 . 3 . 4 | 100 | 11 |
236,280 | def connectNetToMs ( Facility_presence = 0 , ProgressIndicator_presence = 0 , ConnectedNumber_presence = 0 , ConnectedSubaddress_presence = 0 , UserUser_presence = 0 ) : a = TpPd ( pd = 0x3 ) b = MessageType ( mesType = 0x7 ) # 00000111 packet = a / b if Facility_presence is 1 : c = FacilityHdr ( ieiF = 0x1C , eightBitF = 0x0 ) packet = packet / c if ProgressIndicator_presence is 1 : d = ProgressIndicatorHdr ( ieiPI = 0x1E , eightBitPI = 0x0 ) packet = packet / d if ConnectedNumber_presence is 1 : e = ConnectedNumberHdr ( ieiCN = 0x4C , eightBitCN = 0x0 ) packet = packet / e if ConnectedSubaddress_presence is 1 : f = ConnectedSubaddressHdr ( ieiCS = 0x4D , eightBitCS = 0x0 ) packet = packet / f if UserUser_presence is 1 : g = UserUserHdr ( ieiUU = 0x7F , eightBitUU = 0x0 ) packet = packet / g return packet | CONNECT Section 9 . 3 . 5 . 1 | 283 | 10 |
236,281 | def connectMsToNet ( Facility_presence = 0 , ConnectedSubaddress_presence = 0 , UserUser_presence = 0 , SsVersionIndicator_presence = 0 ) : a = TpPd ( pd = 0x3 ) b = MessageType ( mesType = 0x7 ) # 00000111 packet = a / b if Facility_presence is 1 : c = FacilityHdr ( ieiF = 0x1C , eightBitF = 0x0 ) packet = packet / c if ConnectedSubaddress_presence is 1 : d = ConnectedSubaddressHdr ( ieiCS = 0x4D , eightBitCS = 0x0 ) packet = packet / d if UserUser_presence is 1 : e = UserUserHdr ( ieiUU = 0x7F , eightBitUU = 0x0 ) packet = packet / e if SsVersionIndicator_presence is 1 : f = SsVersionIndicatorHdr ( ieiSVI = 0x7F , eightBitSVI = 0x0 ) packet = packet / f return packet | CONNECT Section 9 . 3 . 5 . 2 | 242 | 10 |
236,282 | def connectAcknowledge ( ) : a = TpPd ( pd = 0x3 ) b = MessageType ( mesType = 0xf ) # 00001111 packet = a / b return packet | CONNECT ACKNOWLEDGE Section 9 . 3 . 6 | 43 | 13 |
236,283 | def disconnectNetToMs ( Facility_presence = 0 , ProgressIndicator_presence = 0 , UserUser_presence = 0 , AllowedActions_presence = 0 ) : a = TpPd ( pd = 0x3 ) b = MessageType ( mesType = 0x25 ) # 00100101 c = Cause ( ) packet = a / b / c if Facility_presence is 1 : d = FacilityHdr ( ieiF = 0x1C , eightBitF = 0x0 ) packet = packet / d if ProgressIndicator_presence is 1 : e = ProgressIndicatorHdr ( ieiPI = 0x1E , eightBitPI = 0x0 ) packet = packet / e if UserUser_presence is 1 : f = UserUserHdr ( ieiUU = 0x7E , eightBitUU = 0x0 ) packet = packet / f if AllowedActions_presence is 1 : g = AllowedActionsHdr ( ieiAA = 0x7B , eightBitAA = 0x0 ) packet = packet / g return packet | DISCONNECT Section 9 . 3 . 7 . 1 | 241 | 11 |
236,284 | def disconnectMsToNet ( Facility_presence = 0 , UserUser_presence = 0 , SsVersionIndicator_presence = 0 ) : a = TpPd ( pd = 0x3 ) b = MessageType ( mesType = 0x25 ) # 00100101 c = Cause ( ) packet = a / b / c if Facility_presence is 1 : d = FacilityHdr ( ieiF = 0x1C , eightBitF = 0x0 ) packet = packet / d if UserUser_presence is 1 : e = UserUserHdr ( ieiUU = 0x7E , eightBitUU = 0x0 ) packet = packet / e if SsVersionIndicator_presence is 1 : f = SsVersionIndicatorHdr ( ieiSVI = 0x7F , eightBitSVI = 0x0 ) packet = packet / f return packet | Disconnect Section 9 . 3 . 7 . 2 | 197 | 10 |
236,285 | def emergencySetup ( BearerCapability_presence = 0 ) : a = TpPd ( pd = 0x3 ) b = MessageType ( mesType = 0xe ) # 00001110 packet = a / b if BearerCapability_presence is 1 : c = BearerCapabilityHdr ( ieiBC = 0x04 , eightBitBC = 0x0 ) packet = packet / c return packet | EMERGENCY SETUP Section 9 . 3 . 8 | 92 | 11 |
236,286 | def facilityNetToMs ( ) : a = TpPd ( pd = 0x3 ) b = MessageType ( mesType = 0x3a ) # 00111010 c = Facility ( ) packet = a / b / c return packet | FACILITY Section 9 . 3 . 9 . 1 | 54 | 12 |
236,287 | def facilityMsToNet ( SsVersionIndicator_presence = 0 ) : a = TpPd ( pd = 0x3 ) b = MessageType ( mesType = 0x3a ) # 00111010 c = Facility ( ) packet = a / b / c if SsVersionIndicator_presence is 1 : d = SsVersionIndicatorHdr ( ieiSVI = 0x7F , eightBitSVI = 0x0 ) packet = packet / d return packet | FACILITY Section 9 . 3 . 9 . 2 | 110 | 12 |
236,288 | def hold ( ) : a = TpPd ( pd = 0x3 ) b = MessageType ( mesType = 0x18 ) # 00011000 packet = a / b return packet | HOLD Section 9 . 3 . 10 | 42 | 8 |
236,289 | def holdAcknowledge ( ) : a = TpPd ( pd = 0x3 ) b = MessageType ( mesType = 0x19 ) # 00011001 packet = a / b return packet | HOLD ACKNOWLEDGE Section 9 . 3 . 11 | 45 | 13 |
236,290 | def modify ( LowLayerCompatibility_presence = 0 , HighLayerCompatibility_presence = 0 , ReverseCallSetupDirection_presence = 0 ) : a = TpPd ( pd = 0x3 ) b = MessageType ( mesType = 0x17 ) # 00010111 c = BearerCapability ( ) packet = a / b / c if LowLayerCompatibility_presence is 1 : d = LowLayerCompatibilityHdr ( ieiLLC = 0x7C , eightBitLLC = 0x0 ) packet = packet / d if HighLayerCompatibility_presence is 1 : e = HighLayerCompatibilityHdr ( ieiHLC = 0x7D , eightBitHLC = 0x0 ) packet = packet / e if ReverseCallSetupDirection_presence is 1 : f = ReverseCallSetupDirectionHdr ( ieiRCSD = 0xA3 ) packet = packet / f return packet | MODIFY Section 9 . 3 . 13 | 208 | 9 |
236,291 | def modifyReject ( LowLayerCompatibility_presence = 0 , HighLayerCompatibility_presence = 0 ) : a = TpPd ( pd = 0x3 ) b = MessageType ( mesType = 0x13 ) # 00010011 c = BearerCapability ( ) d = Cause ( ) packet = a / b / c / d if LowLayerCompatibility_presence is 1 : e = LowLayerCompatibilityHdr ( ieiLLC = 0x7C , eightBitLLC = 0x0 ) packet = packet / e if HighLayerCompatibility_presence is 1 : f = HighLayerCompatibilityHdr ( ieiHLC = 0x7D , eightBitHLC = 0x0 ) packet = packet / f return packet | MODIFY REJECT Section 9 . 3 . 15 | 168 | 11 |
236,292 | def notify ( ) : a = TpPd ( pd = 0x3 ) b = MessageType ( mesType = 0x3e ) # 00111110 c = NotificationIndicator ( ) packet = a / b / c return packet | NOTIFY Section 9 . 3 . 16 | 52 | 9 |
236,293 | def progress ( UserUser_presence = 0 ) : a = TpPd ( pd = 0x3 ) b = MessageType ( mesType = 0x3 ) # 00000011 c = ProgressIndicator ( ) packet = a / b / c if UserUser_presence is 1 : d = UserUserHdr ( ) packet = packet / d return packet | PROGRESS Section 9 . 3 . 17 | 79 | 9 |
236,294 | def ccEstablishment ( ) : a = TpPd ( pd = 0x3 ) b = MessageType ( mesType = 0x4 ) # 00000100 c = SetupContainer ( ) packet = a / b / c return packet | CC - ESTABLISHMENT Section 9 . 3 . 17a | 51 | 14 |
236,295 | def ccEstablishmentConfirmed ( RepeatIndicator_presence = 0 , BearerCapability_presence = 0 , BearerCapability_presence1 = 0 , Cause_presence = 0 ) : a = TpPd ( pd = 0x3 ) b = MessageType ( mesType = 0x6 ) # 00000110 packet = a / b if RepeatIndicator_presence is 1 : c = RepeatIndicatorHdr ( ieiRI = 0xD , eightBitRI = 0x0 ) packet = packet / c if BearerCapability_presence is 1 : d = BearerCapabilityHdr ( ieiBC = 0x04 , eightBitBC = 0x0 ) packet = packet / d if BearerCapability_presence1 is 1 : e = BearerCapabilityHdr ( ieiBC = 0x04 , eightBitBC = 0x0 ) packet = packet / e if Cause_presence is 1 : f = CauseHdr ( ieiC = 0x08 , eightBitC = 0x0 ) packet = packet / f return packet | CC - ESTABLISHMENT CONFIRMED Section 9 . 3 . 17b | 239 | 17 |
236,296 | def releaseNetToMs ( ) : a = TpPd ( pd = 0x3 ) b = MessageType ( mesType = 0x2d ) # 00101101 c = CauseHdr ( ieiC = 0x08 , eightBitC = 0x0 ) d = CauseHdr ( ieiC = 0x08 , eightBitC = 0x0 ) e = FacilityHdr ( ieiF = 0x1C , eightBitF = 0x0 ) f = UserUserHdr ( ieiUU = 0x7E , eightBitUU = 0x0 ) packet = a / b / c / d / e / f return packet | RELEASE Section 9 . 3 . 18 . 1 | 145 | 10 |
236,297 | def recall ( ) : a = TpPd ( pd = 0x3 ) b = MessageType ( mesType = 0xb ) # 00001011 c = RecallType ( ) d = Facility ( ) packet = a / b / c / d return packet | RECALL Section 9 . 3 . 18a | 56 | 9 |
236,298 | def releaseCompleteNetToMs ( Cause_presence = 0 , Facility_presence = 0 , UserUser_presence = 0 ) : a = TpPd ( pd = 0x3 ) b = MessageType ( mesType = 0x2a ) # 00101010 packet = a / b if Cause_presence is 1 : c = CauseHdr ( ieiC = 0x08 , eightBitC = 0x0 ) packet = packet / c if Facility_presence is 1 : d = FacilityHdr ( ieiF = 0x1C , eightBitF = 0x0 ) packet = packet / d if UserUser_presence is 1 : e = UserUserHdr ( ieiUU = 0x7E , eightBitUU = 0x0 ) packet = packet / e return packet | RELEASE COMPLETE Section 9 . 3 . 19 . 1 | 177 | 12 |
236,299 | def releaseCompleteMsToNet ( Cause_presence = 0 , Facility_presence = 0 , UserUser_presence = 0 , SsVersionIndicator_presence = 0 ) : a = TpPd ( pd = 0x3 ) b = MessageType ( mesType = 0x2a ) # 00101010 packet = a / b if Cause_presence is 1 : c = CauseHdr ( ieiC = 0x08 , eightBitC = 0x0 ) packet = packet / c if Facility_presence is 1 : d = FacilityHdr ( ieiF = 0x1C , eightBitF = 0x0 ) packet = packet / d if UserUser_presence is 1 : e = UserUserHdr ( ieiUU = 0x7E , eightBitUU = 0x0 ) packet = packet / e if SsVersionIndicator_presence is 1 : f = SsVersionIndicatorHdr ( ieiSVI = 0x7F , eightBitSVI = 0x0 ) packet = packet / f return packet | RELEASE COMPLETE Section 9 . 3 . 19 . 2 | 234 | 12 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.