diff options
author | Masaq- <tilt@techie.com> | 2019-01-30 20:04:08 +0000 |
---|---|---|
committer | Masaq- <tilt@techie.com> | 2019-01-30 20:04:08 +0000 |
commit | e5d53acbe1c11d9437648071f550d14e19439f01 (patch) | |
tree | 001efbdc536822e5d87e52c4baa02d85094181a6 /src/pdesc.c | |
parent | 0c249d89747d613ebe3d39a2467c08137349f668 (diff) |
require authentication
Diffstat (limited to 'src/pdesc.c')
-rw-r--r-- | src/pdesc.c | 1 |
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; |