You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
212 B
10 lines
212 B
# see LICENSE
|
|
|
|
|
|
class Pdu(object):
|
|
|
|
def __init__(self, pdu, len_smsc, cnt=1, seq=1):
|
|
self.pdu = pdu.upper()
|
|
self.length = len(pdu) / 2 - len_smsc
|
|
self.cnt = cnt
|
|
self.seq = seq
|