Split ANY PDU evnt into RX and TX for receive and transmit

This commit is contained in:
David Majdandžić
2023-04-06 18:17:43 +02:00
parent 251658f385
commit 363e3f7fc2
9 changed files with 27 additions and 15 deletions

View File

@@ -16,7 +16,7 @@ export default class EchoPduProcessor extends Postprocessor {
destination_addr: pdu.source_addr,
short_message: pdu.short_message
});
session.send(sentPdu);
entity?.doSendPdu(sentPdu, session);
resolve(sentPdu);
}
});