1
0
mirror of https://code.semirocket.science/wrapsix synced 2024-09-20 07:11:06 +03:00
wrapsix/wrapper/translate_ip.h
xHire 322eeabefb Recognising NDP packets and packets to be wrapped
Cleaned the code a little bit
2008-12-31 21:08:53 +01:00

16 lines
278 B
C

#ifndef TRANSLATE_IP_H
#define TRANSLATE_IP_H
struct ip6addr_ip4part {
long double prefix;
unsigned char a;
unsigned char b;
unsigned char c;
unsigned char d;
};
struct in_addr ipaddr_6to4(const struct in6_addr ip6_addr);
//in6_addr ipaddr_4to6(in_addr ip_addr);
#endif