mirror of
https://github.com/Waujito/youtubeUnblock.git
synced 2025-01-04 13:24:35 +00:00
822266b74b
Such setup is better for cross compilation. Also changed Makefile to properly make the project with these libraries.
13 lines
316 B
C
13 lines
316 B
C
#ifndef _IFTABLE_H
|
|
#define _IFTABLE_H
|
|
|
|
int iftable_delete(uint32_t dst, uint32_t mask, uint32_t gw, uint32_t oif);
|
|
int iftable_insert(uint32_t dst, uint32_t mask, uint32_t gw, uint32_t oif);
|
|
|
|
int iftable_init(void);
|
|
void iftable_fini(void);
|
|
|
|
int iftable_dump(FILE *outfd);
|
|
int iftable_up(unsigned int index);
|
|
#endif
|