blob: f49323a64707742b7f0b2079cb2d3a0e0cdf0a60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/*
* addr_hash.h:
*
*/
#ifndef __ADDR_HASH_H_ /* include guard */
#define __ADDR_HASH_H_
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include "hash.h"
typedef struct {
int af;
unsigned short int protocol;
unsigned short int src_port;
union {
struct in_addr src;
struct in6_addr src6;
};
unsigned short int dst_port;
union {
struct in_addr dst;
struct in6_addr dst6;
};
} addr_pair;
typedef addr_pair key_type; /* index into hash table */
hash_type* addr_hash_create(void);
#endif /* __ADDR_HASH_H_ */
|