Browse Source

define ANY_ROUTE

- defined as 0xffffffff to match any route type
Daniel-Constantin Mierla 16 years ago
parent
commit
16b47a9a88
1 changed files with 1 additions and 0 deletions
  1. 1 0
      route.h

+ 1 - 0
route.h

@@ -52,6 +52,7 @@
 #define ONSEND_ROUTE  (1 << 4)
 #define ONSEND_ROUTE  (1 << 4)
 #define ERROR_ROUTE   (1 << 5)
 #define ERROR_ROUTE   (1 << 5)
 #define LOCAL_ROUTE   (1 << 6)
 #define LOCAL_ROUTE   (1 << 6)
+#define ANY_ROUTE     (0xFFFFFFFF)
 
 
 /* The value of this variable is one of the route types defined above and it
 /* The value of this variable is one of the route types defined above and it
  * determines the type of the route being executed, module functions can use
  * determines the type of the route being executed, module functions can use