transport: Make all calls go through base class send_apdu_raw()

This allows us to add APDU tracing at one central location in the code

Change-Id: Id0593a2e6d846cc3151443f1022ae7ee030e6673
This commit is contained in:
Harald Welte
2021-04-10 10:55:24 +02:00
parent 4145d3c4af
commit c34f9405f1
5 changed files with 5 additions and 5 deletions

View File

@@ -71,7 +71,7 @@ class PcscSimLink(LinkBase):
self.connect()
return 1
def send_apdu_raw(self, pdu):
def _send_apdu_raw(self, pdu):
apdu = h2i(pdu)