aboutsummaryrefslogtreecommitdiff
path: root/src/pdesc.c
diff options
context:
space:
mode:
authorMasaq- <tilt@techie.com>2019-01-30 20:04:08 +0000
committerMasaq- <tilt@techie.com>2019-01-30 20:04:08 +0000
commite5d53acbe1c11d9437648071f550d14e19439f01 (patch)
tree001efbdc536822e5d87e52c4baa02d85094181a6 /src/pdesc.c
parent0c249d89747d613ebe3d39a2467c08137349f668 (diff)
require authentication
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 af580e8..b39648f 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 = 64;
cur->ack_interval = 1.0;
cur->resend_interval = 1.5;
+ 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 *));
return cur;