Randomisation of the Stream ID
This commit is contained in:
parent
aa7fea86ba
commit
bce4e01775
@ -33,7 +33,7 @@ from binascii import a2b_hex as bhex
|
|||||||
from random import randint
|
from random import randint
|
||||||
from hashlib import sha256, sha1
|
from hashlib import sha256, sha1
|
||||||
from hmac import new as hmac_new, compare_digest
|
from hmac import new as hmac_new, compare_digest
|
||||||
from time import time
|
from time import time, sleep
|
||||||
from collections import deque
|
from collections import deque
|
||||||
|
|
||||||
# Twisted is pretty important, so I keep it separate
|
# Twisted is pretty important, so I keep it separate
|
||||||
@ -294,7 +294,9 @@ class HBSYSTEM(DatagramProtocol):
|
|||||||
radio3 = int.from_bytes(radio, 'big').to_bytes(3, 'big')
|
radio3 = int.from_bytes(radio, 'big').to_bytes(3, 'big')
|
||||||
radio4 = int.from_bytes(radio, 'big').to_bytes(4, 'big')
|
radio4 = int.from_bytes(radio, 'big').to_bytes(4, 'big')
|
||||||
xlx3 = xlx.to_bytes(3, 'big')
|
xlx3 = xlx.to_bytes(3, 'big')
|
||||||
streamid = bytearray.fromhex('6df88f36')
|
streamid = randint(0,255).to_bytes(1, 'big')+randint(0,255).to_bytes(1, 'big')+randint(0,255).to_bytes(1, 'big')+randint(0,255).to_bytes(1, 'big')
|
||||||
|
# Wait for .5 secs for the XLX to log us in
|
||||||
|
sleep(.500)
|
||||||
for packetnr in range(5):
|
for packetnr in range(5):
|
||||||
if packetnr < 3:
|
if packetnr < 3:
|
||||||
# First 3 packets, voice start, stream type e1
|
# First 3 packets, voice start, stream type e1
|
||||||
@ -307,9 +309,10 @@ class HBSYSTEM(DatagramProtocol):
|
|||||||
packetnr1 = packetnr.to_bytes(1, 'big')
|
packetnr1 = packetnr.to_bytes(1, 'big')
|
||||||
strmtype1 = strmtype.to_bytes(1, 'big')
|
strmtype1 = strmtype.to_bytes(1, 'big')
|
||||||
_packet = b''.join([DMRD, packetnr1, radio3, xlx3, radio4, strmtype1, streamid, payload])
|
_packet = b''.join([DMRD, packetnr1, radio3, xlx3, radio4, strmtype1, streamid, payload])
|
||||||
|
sleep(.100)
|
||||||
self.transport.write(_packet, mastersock)
|
self.transport.write(_packet, mastersock)
|
||||||
# KEEP THE FOLLOWING COMMENTED OUT UNLESS YOU'RE DEBUGGING DEEPLY!!!!
|
# KEEP THE FOLLOWING COMMENTED OUT UNLESS YOU'RE DEBUGGING DEEPLY!!!!
|
||||||
#logger.info('(%s) XLX Module Change Packet: %s', self._system, ahex(_packet))
|
#logger.debug('(%s) XLX Module Change Packet: %s', self._system, ahex(_packet))
|
||||||
return
|
return
|
||||||
|
|
||||||
def dmrd_received(self, _peer_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data):
|
def dmrd_received(self, _peer_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data):
|
||||||
|
Loading…
Reference in New Issue
Block a user