aboutsummaryrefslogtreecommitdiff
path: root/src/pdesc.c
diff options
context:
space:
mode:
authorMasaq- <tilt@techie.com>2019-02-08 04:17:50 +0000
committerMasaq- <tilt@techie.com>2019-02-08 04:17:50 +0000
commitdfb47d868a46b8d3aacc8ee1446fa9302e047a79 (patch)
treea3b557307ade2df9120e179e9301340cd2b10710 /src/pdesc.c
parent18e57efacab2be387a42ea566125ee65c915cc78 (diff)
command line option -y payload size
Diffstat (limited to 'src/pdesc.c')
-rw-r--r--src/pdesc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pdesc.c b/src/pdesc.c
index b034b8b..df8df46 100644
--- a/src/pdesc.c
+++ b/src/pdesc.c
@@ -114,6 +114,7 @@ proxy_desc_t *create_and_insert_proxy_desc(uint16_t id_no, uint16_t icmp_id,
cur->window_size = opts.window_size ? opts.window_size : 64;
cur->ack_interval = opts.ack_interval ? opts.ack_interval / 1000.0 : 1.0;
cur->resend_interval = opts.resend_interval ? opts.resend_interval / 1000.0 : 1.5;
+ cur->payload_size = opts.payload_size ? opts.payload_size : 1024;
memset(cur->extended_options, 0, sizeof(cur->extended_options));
cur->send_ring = calloc(cur->window_size, sizeof(icmp_desc_t));
cur->recv_ring = calloc(cur->window_size, sizeof(forward_desc_t *));