AX.25 header fix
This commit is contained in:
parent
9827da9e0f
commit
52968e8ba5
|
@ -163,7 +163,8 @@ class AX25KISSInterface(Interface):
|
|||
|
||||
|
||||
def processIncoming(self, data):
|
||||
self.owner.inbound(data, self)
|
||||
if (len(data) > 16):
|
||||
self.owner.inbound(data[16:], self)
|
||||
|
||||
|
||||
def processOutgoing(self,data):
|
||||
|
|
Loading…
Reference in New Issue