diff options
author | Hanoh Haim <hhaim@cisco.com> | 2015-12-28 23:03:06 +0200 |
---|---|---|
committer | Hanoh Haim <hhaim@cisco.com> | 2015-12-28 23:03:06 +0200 |
commit | a1364603328fc8295216038c495f929573855a90 (patch) | |
tree | 7bad267533bf73344f54d9576f021dd917c2e85f /src/common | |
parent | 97e5e483633ed4263822a625374131f258f6f377 (diff) |
maximum packet size support 9k - simulation
Diffstat (limited to 'src/common')
-rwxr-xr-x | src/common/captureFile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/captureFile.h b/src/common/captureFile.h index 027f1fcf..9a522d83 100755 --- a/src/common/captureFile.h +++ b/src/common/captureFile.h @@ -35,7 +35,7 @@ typedef enum capture_type { LAST_TYPE } capture_type_e; -#define MAX_PKT_SIZE (2048) +#define MAX_PKT_SIZE (9*1024+22) #define READER_MAX_PACKET_SIZE MAX_PKT_SIZE |