http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=427852#30 Adds support for IPv6 Also fixes: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=477928 (minor typo) http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=595169 (performance problem with address hashing) http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=598367 (failing link address detection for GNU/kfreebsd)
34 lines
606 B
C
34 lines
606 B
C
/*
|
|
* 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_ */
|