diff --git a/build_tools/cflags.xml b/build_tools/cflags.xml index 2bd8fd2f2e..c8822013a4 100644 --- a/build_tools/cflags.xml +++ b/build_tools/cflags.xml @@ -68,9 +68,6 @@ no extended - - extended - extended diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c index 27882fdbf1..e4dd424d55 100644 --- a/channels/chan_iax2.c +++ b/channels/chan_iax2.c @@ -1161,9 +1161,6 @@ static void __attribute__((format(printf, 1, 2))) jb_debug_output(const char *fm ast_verbose("%s", buf); } -static int maxtrunkcall = TRUNK_CALL_START; -static int maxnontrunkcall = 1; - static enum ast_bridge_result iax2_bridge(struct ast_channel *c0, struct ast_channel *c1, int flags, struct ast_frame **fo, struct ast_channel **rc, int timeoutms); static int expire_registry(const void *data); static int iax2_answer(struct ast_channel *c); @@ -2077,37 +2074,6 @@ static int match(struct sockaddr_in *sin, unsigned short callno, unsigned short return 0; } -static void update_max_trunk(void) -{ - int max = TRUNK_CALL_START; - int x; - - /* XXX Prolly don't need locks here XXX */ - for (x = TRUNK_CALL_START; x < ARRAY_LEN(iaxs) - 1; x++) { - if (iaxs[x]) { - max = x + 1; - } - } - - maxtrunkcall = max; - if (iaxdebug) - ast_debug(1, "New max trunk callno is %d\n", max); -} - -static void update_max_nontrunk(void) -{ - int max = 1; - int x; - /* XXX Prolly don't need locks here XXX */ - for (x=1;x= NEW_ALLOW)) { struct callno_entry *callno_entry; @@ -2953,7 +2883,6 @@ static int __find_callno(unsigned short callno, unsigned short dcallno, struct s ast_mutex_lock(&iaxsl[x]); iaxs[x] = new_iax(sin, host); - update_max_nontrunk(); if (iaxs[x]) { if (iaxdebug) ast_debug(1, "Creating new call structure %d\n", x); @@ -3506,10 +3435,6 @@ retry: if (owner) { ast_channel_unlock(owner); } - - if (callno & TRUNK_CALL_START) { - update_max_trunk(); - } } static int update_packet(struct iax_frame *f)