1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

added set_ipv6_method fuction(not implemented yes)

This commit is contained in:
Stephan Zeisberg 2010-10-06 17:55:31 +02:00
parent bba315e93f
commit 42871faffc
2 changed files with 10 additions and 1 deletions

View File

@ -35,3 +35,7 @@ static eui64 get_eui64_from_mac(void){
return ident;
}
static void set_6lowpan_address(uint64_t prefix){
}

View File

@ -13,4 +13,9 @@ typedef struct eui64{
uint16_t pattern;
uint8_t ext_ident_1;
uint16_t ext_ident_2;
} eui64;
} eui64;
typedef struct ipv6_addr{
uint16_t prefix[4];
eui64 interface_id;
} ipv6_addr;