* Fri Mar 5 2004 David Parrish <david@dparrish.com> 1.1.0
[l2tpns.git] / plugin.h
index 28855e1..b41b16f 100644 (file)
--- a/plugin.h
+++ b/plugin.h
@@ -4,16 +4,18 @@
 #define PLUGIN_API_VERSION     1
 #define MAX_PLUGIN_TYPES       30
 
-#define PLUGIN_PRE_AUTH                1
-#define PLUGIN_POST_AUTH       2
-#define PLUGIN_PACKET_RX       3
-#define PLUGIN_PACKET_TX       4
-#define PLUGIN_TIMER           5
-#define PLUGIN_CONFIG          6
-#define PLUGIN_NEW_SESSION     7
-#define PLUGIN_KILL_SESSION    8
-#define PLUGIN_CONTROL         9
-#define PLUGIN_RADIUS_RESPONSE 10
+enum
+{
+       PLUGIN_PRE_AUTH = 1,
+       PLUGIN_POST_AUTH,
+       PLUGIN_PACKET_RX,
+       PLUGIN_PACKET_TX,
+       PLUGIN_TIMER,
+       PLUGIN_NEW_SESSION,
+       PLUGIN_KILL_SESSION,
+       PLUGIN_CONTROL,
+       PLUGIN_RADIUS_RESPONSE
+};
 
 #define PLUGIN_RET_ERROR       0
 #define PLUGIN_RET_OK          1