AX.25 header fix

pull/4/head
Mark Qvist 2018-04-11 21:36:35 +02:00
rodzic 9827da9e0f
commit 52968e8ba5
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -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):