aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Kaiser <wireshark@kaiser.cx>2020-07-04 12:58:10 +0200
committerAnders Broman <a.broman58@gmail.com>2020-07-05 12:13:48 +0000
commit23aa1ed679b57b48b07ab95c7867df2388e291e2 (patch)
tree7a4d639e57a517017a1c6f9de31a7f5dd8168dcf
parent486d163470a73e088735e943f701265679a83377 (diff)
mplog: increase the max packet length to 4096
iso14443 packets can now be up to 4k long. Change-Id: I120e18146cc40c0e9230c654cc31072e03ad3489 Reviewed-on: https://code.wireshark.org/review/37691 Reviewed-by: Martin Kaiser <wireshark@kaiser.cx> Petri-Dish: Martin Kaiser <wireshark@kaiser.cx> Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Anders Broman <a.broman58@gmail.com>
-rw-r--r--wiretap/mplog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wiretap/mplog.c b/wiretap/mplog.c
index beadb95c43..cfc545234e 100644
--- a/wiretap/mplog.c
+++ b/wiretap/mplog.c
@@ -68,7 +68,7 @@
#define ISO14443_PSEUDO_HDR_PCD_TO_PICC 0xFE
-#define ISO14443_MAX_PKT_LEN 256
+#define ISO14443_MAX_PKT_LEN 4096
#define PKT_BUF_LEN (ISO14443_PSEUDO_HDR_LEN + ISO14443_MAX_PKT_LEN)