aboutsummaryrefslogtreecommitdiff
path: root/src/ptunnel.c
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2020-03-14 18:55:32 +0100
committerToni Uhlig <matzeton@googlemail.com>2020-03-14 18:55:32 +0100
commit8823555e48209b397b0def62219f9b25243bde23 (patch)
tree1d2fe822764aa636988ffa734c30f306545345db /src/ptunnel.c
parent1e8037d84d01ef605b667f8db42f3c95831d7920 (diff)
sequence number timeout table uses now correct time_t for timestamps
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src/ptunnel.c')
-rw-r--r--src/ptunnel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ptunnel.c b/src/ptunnel.c
index 8462758..5feb34a 100644
--- a/src/ptunnel.c
+++ b/src/ptunnel.c
@@ -105,7 +105,7 @@ int num_threads = 0;
/** Current tunnel count */
uint32_t num_tunnels = 0;
/** Table indicating when a connection ID is allowable (used by proxy) */
-uint32_t *seq_expiry_tbl = NULL;
+time_t *seq_expiry_tbl = NULL;
/* Some buffer constants */
const int icmp_receive_buf_len = kDefault_buf_size + kIP_header_size +
@@ -181,7 +181,7 @@ int main(int argc, char *argv[]) {
/* The seq_expiry_tbl is used to prevent the remote ends from prematurely
* re-using a sequence number.
*/
- seq_expiry_tbl = (uint32_t *) calloc(65536, sizeof(uint32_t));
+ seq_expiry_tbl = (time_t *) calloc(65536, sizeof(time_t));
/* Parse options */
if (parse_options(argc, argv))