blob: 997cb71a5680cd277dc94efd12723663430a2d8d [file] [log] [blame]
#ifndef _NLSR_NPT_H_
#define _NLSR_NPT_H_
#define NO_FACE -12345
struct npt_entry
{
char *orig_router;
struct hashtb *name_list;
int next_hop_face;
};
struct name_list_entry
{
char *name;
};
int add_npt_entry(char *orig_router, char *name_prefix, int face);
void print_npt(void);
void delete_orig_router_from_npt(char *orig_router,int next_hop_face);
#endif