1
0
mirror of https://code.semirocket.science/wrapsix synced 2024-09-20 07:11:06 +03:00
wrapsix/wrapper/storage.h
xHire b6a9de321b Backward translation of ICMP traffic
Fixed mistake in field type in pseudo-IPv6 header
Bundled a library for red-black trees (storage mechanism is based on it)
2009-01-06 17:14:51 +01:00

29 lines
520 B
C

#ifndef STORAGE_H
#define STORAGE_H
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <netinet/in.h>
#include "jsw_rbtree.h"
#include "wrapper.h"
struct stg_conn_icmp {
unsigned short id;
struct in_addr addr_to;
struct in6_addr addr_from;
struct s_mac_addr mac;
unsigned char is_ping;
time_t time;
};
int stg_conn_icmp_cmp(const void *p1, const void *p2);
void *stg_conn_icmp_dup(void *p);
void stg_conn_icmp_rel(void *p);
extern jsw_rbtree_t *stg_conn_icmp;
#endif