Porting PicoTCP WIP
This commit is contained in:
32
kernel/picotcp/modules/pico_olsr.h
Normal file
32
kernel/picotcp/modules/pico_olsr.h
Normal file
@ -0,0 +1,32 @@
|
||||
/*********************************************************************
|
||||
PicoTCP. Copyright (c) 2012-2017 Altran Intelligent Systems. Some rights reserved.
|
||||
See COPYING, LICENSE.GPLv2 and LICENSE.GPLv3 for usage.
|
||||
|
||||
Authors: Daniele Lacamera
|
||||
*********************************************************************/
|
||||
#ifndef PICO_OLSR_H
|
||||
#define PICO_OLSR_H
|
||||
|
||||
|
||||
/* Objects */
|
||||
struct olsr_route_entry
|
||||
{
|
||||
struct olsr_route_entry *next;
|
||||
uint32_t time_left;
|
||||
struct pico_ip4 destination;
|
||||
struct olsr_route_entry *gateway;
|
||||
struct pico_device *iface;
|
||||
uint16_t metric;
|
||||
uint8_t link_type;
|
||||
struct olsr_route_entry *children;
|
||||
uint16_t ansn;
|
||||
uint16_t seq;
|
||||
uint8_t lq, nlq;
|
||||
uint8_t *advertised_tc;
|
||||
};
|
||||
|
||||
|
||||
void pico_olsr_init(void);
|
||||
int pico_olsr_add(struct pico_device *dev);
|
||||
struct olsr_route_entry *olsr_get_ethentry(struct pico_device *vif);
|
||||
#endif
|
||||
Reference in New Issue
Block a user