aboutsummaryrefslogtreecommitdiffstats
path: root/pbx
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-10-12 16:51:31 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-10-12 16:51:31 +0000
commit5422cba950aee9fbf579cac76967c886e26e2ea9 (patch)
treeca523c0d18024a126af45c730c9726b7da77f29c /pbx
parent8e30fcc2a37e5ce8ce545d04f03782178e027cb7 (diff)
put flags in an enum and remove a couple of unused defines
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@44944 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'pbx')
-rw-r--r--pbx/pbx_dundi.c19
1 files changed, 9 insertions, 10 deletions
diff --git a/pbx/pbx_dundi.c b/pbx/pbx_dundi.c
index 241cc5d4d..dba8607d5 100644
--- a/pbx/pbx_dundi.c
+++ b/pbx/pbx_dundi.c
@@ -86,13 +86,15 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
/*! Keep times of last 10 lookups */
#define DUNDI_TIMING_HISTORY 10
-#define FLAG_ISREG (1 << 0) /*!< Transaction is register request */
-#define FLAG_DEAD (1 << 1) /*!< Transaction is dead */
-#define FLAG_FINAL (1 << 2) /*!< Transaction has final message sent */
-#define FLAG_ISQUAL (1 << 3) /*!< Transaction is a qualification */
-#define FLAG_ENCRYPT (1 << 4) /*!< Transaction is encrypted wiht ECX/DCX */
-#define FLAG_SENDFULLKEY (1 << 5) /*!< Send full key on transaction */
-#define FLAG_STOREHIST (1 << 6) /*!< Record historic performance */
+enum {
+ FLAG_ISREG = (1 << 0), /*!< Transaction is register request */
+ FLAG_DEAD = (1 << 1), /*!< Transaction is dead */
+ FLAG_FINAL = (1 << 2), /*!< Transaction has final message sent */
+ FLAG_ISQUAL = (1 << 3), /*!< Transaction is a qualification */
+ FLAG_ENCRYPT = (1 << 4), /*!< Transaction is encrypted wiht ECX/DCX */
+ FLAG_SENDFULLKEY = (1 << 5), /*!< Send full key on transaction */
+ FLAG_STOREHIST = (1 << 6), /*!< Record historic performance */
+};
#define DUNDI_FLAG_INTERNAL_NOPARTIAL (1 << 17)
@@ -102,9 +104,6 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#define DUNDI_SECRET_TIME DUNDI_DEFAULT_CACHE_TIME
#endif
-#define KEY_OUT 0
-#define KEY_IN 1
-
static struct io_context *io;
static struct sched_context *sched;
static int netsocket = -1;