aboutsummaryrefslogtreecommitdiffstats
path: root/epan/address.h
diff options
context:
space:
mode:
authorMartin Kaiser <wireshark@kaiser.cx>2016-02-06 13:58:19 +0100
committerMartin Kaiser <wireshark@kaiser.cx>2016-02-13 13:28:41 +0000
commit378c59bfae5c9111f79b88665b008e796134512b (patch)
treef18fa100ac1ee620d556d8e4c94fb62fc5fc339c /epan/address.h
parent8a2b3bc898d81a0995b2d8fc6381ecc9d170fdff (diff)
iso14443: verify the CRC of all messages
define a function to dissect the CRC depending on the card type add a circuit for an activated card to keep track of the card type define a new circuit type CT_ISO1443 for this purpose, the circuit ID is always 0 as we support only a single active card Change-Id: I7250f834301612ba50743258ca7bdbe0199de3ea Reviewed-on: https://code.wireshark.org/review/13908 Reviewed-by: Martin Kaiser <wireshark@kaiser.cx>
Diffstat (limited to 'epan/address.h')
-rw-r--r--epan/address.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/epan/address.h b/epan/address.h
index f0a42c1eee..897e7f0fe0 100644
--- a/epan/address.h
+++ b/epan/address.h
@@ -285,7 +285,10 @@ typedef enum {
CT_IAX2, /* IAX2 call id */
CT_H223, /* H.223 logical channel number */
CT_BICC, /* BICC Circuit identifier */
- CT_DVBCI /* DVB-CI session number|transport connection id */
+ CT_DVBCI, /* DVB-CI session number|transport connection id */
+ CT_ISO14443 /* ISO14443 connection between terminal and card
+ the circuit ID is always 0, there's only one
+ such connection */
/* Could also have ATM VPI/VCI pairs */
} circuit_type;