/* HIP Agent License: GNU/GPL Authors: Antti Partanen */ #ifndef AGENT_H #define AGENT_H /******************************************************************************/ /* DEFINES */ /** * HIP agent lock file is used to prevent multiple instances * of the agent to start and to record current daemon pid. */ #define HIP_AGENT_LOCK_FILE "/var/lock/hipagent.lock" /******************************************************************************/ /* INCLUDES */ #include //#include #include #include #include #include #include #include #include #include #ifndef __u32 /* Fedore Core 3/4 and Enterprise linux 4 is broken. */ # include #endif #include "linux/netlink.h" #include "linux/rtnetlink.h" //#include "workqueue.h" #include "agent_tools.h" #include "gui_interface.h" #include "terminal.h" /******************************************************************************/ /* FUNCTION DEFINITIONS */ #endif /* END OF HEADER FILE */ /******************************************************************************/