diff uicc/dispatch.c @ 153:2ef31306be22

fc-uicc-tool bfsearch-{adf,mf} implemented
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 25 Feb 2021 17:46:53 +0000
parents d9dd52bc403b
children
line wrap: on
line diff
--- a/uicc/dispatch.c	Thu Feb 25 17:22:20 2021 +0000
+++ b/uicc/dispatch.c	Thu Feb 25 17:46:53 2021 +0000
@@ -9,6 +9,8 @@
 #include <stdlib.h>
 
 extern int cmd_apdu();
+extern int cmd_bfsearch_adf();
+extern int cmd_bfsearch_mf();
 extern int cmd_cd();
 extern int cmd_change_pin();
 extern int cmd_create_file();
@@ -48,6 +50,8 @@
 } cmdtab[] = {
 	{"apdu", 1, 1, 0, cmd_apdu},
 	{"atr", 0, 0, 0, retrieve_atr},
+	{"bfsearch-adf", 0, 0, 1, cmd_bfsearch_adf},
+	{"bfsearch-mf", 0, 0, 1, cmd_bfsearch_mf},
 	{"cd", 1, 1, 0, cmd_cd},
 	{"change-pin", 3, 3, 0, cmd_change_pin},
 	{"create-file", 1, 1, 0, cmd_create_file},