#ifndef __SYSCALL__H__ #define __SYSCALL__H__ /*sycall handling gateways*/ int add_gateway(unsigned int ipAddr); int remove_gateway(unsigned int ipAddr); /*syscall handling routables*/ int add_routable(unsigned int ipAddr); int remove_routable(unsigned int ipAddr); /*syscall handling states*/ int change_state(unsigned int state); int get_state(); /*syscall handling CID*/ unsigned int change_cid(unsigned int cid); unsigned int get_cid(); #endif /*__SYCALL__H__*/