blob: 70f26d7b27dc5256e31ad42562c5ecce339e677c [file] [log] [blame]
Harald Welte3ac66a12019-03-02 12:42:42 +01001digraph {
2 rankdir=LR;
3 SIM [shape=rect];
4 Reader [shape=rect];
5 Computer [shape=rect];
6 ComputerB [shape=rect];
7 SIMtrace [shape=rect];
8 Phone [shape=rect];
9
10 SIM -> Reader [label="ISO-7816-2/3",dir=both];
11 Reader -> Computer [label="USB CCID",dir=both];
12 Computer -> ComputerB [label="IP based transport",dir=both];
13 ComputerB -> SIMtrace [label="USB",dir=both];
14 SIMtrace -> Phone [label="ISO-7816-2/3",dir=both];
15}