fix hash item type definition

This commit is contained in:
yrutschle 2022-04-02 18:59:32 +02:00
parent 9ce9b5cd82
commit 5fa03ec9a3
3 changed files with 3 additions and 4 deletions

View File

@ -22,7 +22,6 @@
#include <stdlib.h>
#include <ev.h>
#include "processes.h"
#include "gap.h"
#include "log.h"
#include "udp-listener.h"

View File

@ -27,9 +27,6 @@
#include "sslh-conf.h"
#include "udp-listener.h"
typedef struct connection* hash_item;
#include "hash.h"
/* returns date at which this socket times out. */
static int udp_timeout(struct connection* cnx)

View File

@ -1,6 +1,9 @@
#ifndef UDPLISTENER_H
#define UDPLISTENER_H
typedef struct connection* hash_item;
#include "hash.h"
#include "collection.h"
#include "processes.h"
#include "common.h"