[asterisk-commits] mogorman: trunk r39229 - in /trunk: channels/chan_jingle.c res/res_jabber.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Mon Aug 7 14:15:28 MST 2006


Author: mogorman
Date: Mon Aug  7 16:15:28 2006
New Revision: 39229

URL: http://svn.digium.com/view/asterisk?rev=39229&view=rev
Log:
Many many code cleanup changes given to me by Oej
Thanks, sorry I didn't put this in forever ago.

Modified:
    trunk/channels/chan_jingle.c
    trunk/res/res_jabber.c

Modified: trunk/channels/chan_jingle.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_jingle.c?rev=39229&r1=39228&r2=39229&view=diff
==============================================================================
--- trunk/channels/chan_jingle.c (original)
+++ trunk/channels/chan_jingle.c Mon Aug  7 16:15:28 2006
@@ -97,26 +97,26 @@
 };
 
 struct jingle_pvt {
-	ast_mutex_t lock;		/* Channel private lock */
+	ast_mutex_t lock;                /*!< Channel private lock */
 	time_t laststun;
-	struct jingle *parent;	/* Parent client */
+	struct jingle *parent;	         /*!< Parent client */
 	char sid[100];
 	char from[100];
-	char ring[10];			/* Message ID of ring */
-	iksrule *ringrule;		/* Rule for matching RING request */
-	int initiator;			/* If we're the initiator */
+	char ring[10];                   /*!< Message ID of ring */
+	iksrule *ringrule;               /*!< Rule for matching RING request */
+	int initiator;                   /*!< If we're the initiator */
 	int alreadygone;
 	int capability;
 	struct ast_codec_pref prefs;
 	struct jingle_candidate *theircandidates;
 	struct jingle_candidate *ourcandidates;
-	char cid_num[80];		/*!< Caller ID num */
-	char cid_name[80];		/*!< Caller ID name */
-	char exten[80];		/* Called extension */
-	struct ast_channel *owner;	/* Master Channel */
-	struct ast_rtp *rtp;	/*!< RTP Session */
-	struct ast_rtp *vrtp;
-	int jointcapability;	/*!< Supported capability at both ends (codecs ) */
+	char cid_num[80];                /*!< Caller ID num */
+	char cid_name[80];               /*!< Caller ID name */
+	char exten[80];                  /*!< Called extension */
+	struct ast_channel *owner;       /*!< Master Channel */
+	struct ast_rtp *rtp;             /*!< RTP audio session */
+	struct ast_rtp *vrtp;            /*!< RTP video session */
+	int jointcapability;             /*!< Supported capability at both ends (codecs ) */
 	int peercapability;
 	struct jingle_pvt *next;	/* Next entity */
 };
@@ -145,7 +145,7 @@
 	int amaflags;			/*!< AMA Flags */
 	char user[100];
 	char context[100];
-	char accountcode[AST_MAX_ACCOUNT_CODE];	/* Account code */
+	char accountcode[AST_MAX_ACCOUNT_CODE];	/*!< Account code */
 	int capability;
 	ast_group_t callgroup;	/*!< Call group */
 	ast_group_t pickupgroup;	/*!< Pickup group */
@@ -166,12 +166,11 @@
 static int usecnt = 0;
 AST_MUTEX_DEFINE_STATIC(usecnt_lock);
 
-
 static int global_capability = AST_FORMAT_ULAW | AST_FORMAT_ALAW | AST_FORMAT_GSM | AST_FORMAT_H263;
 
-/* Protect the interface list (of sip_pvt's) */
-AST_MUTEX_DEFINE_STATIC(jinglelock);
-
+AST_MUTEX_DEFINE_STATIC(jinglelock); /*!< Protect the interface list (of sip_pvt's) */
+
+/* Forward declarations */
 static struct ast_channel *jingle_request(const char *type, int format, void *data, int *cause);
 static int jingle_digit(struct ast_channel *ast, char digit);
 static int jingle_call(struct ast_channel *ast, char *dest, int timeout);
@@ -184,8 +183,13 @@
 static int jingle_fixup(struct ast_channel *oldchan, struct ast_channel *newchan);
 static int jingle_sendhtml(struct ast_channel *ast, int subclass, const char *data, int datalen);
 static struct jingle_pvt *jingle_alloc(struct jingle *client, const char *from, const char *sid);
-
-/* PBX interface structure for channel registration */
+/*----- RTP interface functions */
+static int jingle_set_rtp_peer(struct ast_channel *chan, struct ast_rtp *rtp,
+							   struct ast_rtp *vrtp, int codecs, int nat_active);
+static struct ast_rtp *jingle_get_rtp_peer(struct ast_channel *chan);
+static int jingle_get_codec(struct ast_channel *chan);
+
+/*! \brief PBX interface structure for channel registration */
 static const struct ast_channel_tech jingle_tech = {
 	.type = type,
 	.description = tdesc,
@@ -210,12 +214,9 @@
 static struct sched_context *sched;	/*!< The scheduling context */
 static struct io_context *io;	/*!< The IO context */
 static struct in_addr __ourip;
-/*----- RTP interface functions */
-static int jingle_set_rtp_peer(struct ast_channel *chan, struct ast_rtp *rtp,
-							   struct ast_rtp *vrtp, int codecs, int nat_active);
-static struct ast_rtp *jingle_get_rtp_peer(struct ast_channel *chan);
-static int jingle_get_codec(struct ast_channel *chan);
-
+
+
+/*! \brief RTP driver interface */
 static struct ast_rtp_protocol jingle_rtp = {
 	type: "jingle",
 	get_rtp_info: jingle_get_rtp_peer,
@@ -262,7 +263,9 @@
 
 static void add_codec_to_answer(const struct jingle_pvt *p, int codec, iks *dcodecs)
 {
-	if (!strcasecmp("ulaw", ast_getformatname(codec))) {
+	char *format = ast_getformatname(codec);
+
+	if (!strcasecmp("ulaw", format)) {
 		iks *payload_eg711u, *payload_pcmu;
 		payload_pcmu = iks_new("payload-type");
 		iks_insert_attrib(payload_pcmu, "id", "0");
@@ -275,9 +278,9 @@
 		iks_insert_node(dcodecs, payload_pcmu);
 		iks_insert_node(dcodecs, payload_eg711u);
 	}
-	if (!strcasecmp("alaw", ast_getformatname(codec))) {
-		iks *payload_eg711a, *payload_pcma;
-		payload_pcma = iks_new("payload-type");
+	if (!strcasecmp("alaw", format)) {
+		iks *payload_eg711a;
+		iks *payload_pcma = iks_new("payload-type");
 		iks_insert_attrib(payload_pcma, "id", "8");
 		iks_insert_attrib(payload_pcma, "name", "PCMA");
 		iks_insert_attrib(payload_pcma, "xmlns", "http://www.google.com/session/phone");
@@ -288,17 +291,15 @@
 		iks_insert_node(dcodecs, payload_pcma);
 		iks_insert_node(dcodecs, payload_eg711a);
 	}
-	if (!strcasecmp("ilbc", ast_getformatname(codec))) {
-		iks *payload_ilbc;
-		payload_ilbc = iks_new("payload-type");
+	if (!strcasecmp("ilbc", format)) {
+		iks *payload_ilbc = iks_new("payload-type");
 		iks_insert_attrib(payload_ilbc, "id", "102");
 		iks_insert_attrib(payload_ilbc, "name", "iLBC");
 		iks_insert_attrib(payload_ilbc, "xmlns", "http://www.google.com/session/phone");
 		iks_insert_node(dcodecs, payload_ilbc);
 	}
-	if (!strcasecmp("g723", ast_getformatname(codec))) {
-		iks *payload_g723;
-		payload_g723 = iks_new("payload-type");
+	if (!strcasecmp("g723", format)) {
+		iks *payload_g723 = iks_new("payload-type");
 		iks_insert_attrib(payload_g723, "id", "4");
 		iks_insert_attrib(payload_g723, "name", "G723");
 		iks_insert_attrib(payload_g723, "xmlns", "http://www.google.com/session/phone");
@@ -382,6 +383,7 @@
 static int jingle_ringing_ack(void *data, ikspak *pak)
 {
 	struct jingle_pvt *p = data;
+
 	if (p->ringrule)
 		iks_filter_remove_rule(p->parent->connection->f, p->ringrule);
 	p->ringrule = NULL;
@@ -395,7 +397,9 @@
 	struct jingle_pvt *p = ast->tech_pvt;
 	struct jingle *client = p->parent;
 	int res = 0;
-	ast_log(LOG_DEBUG, "Answer!\n");
+
+	if (option_debug)
+		ast_log(LOG_DEBUG, "Answer!\n");
 	ast_mutex_lock(&p->lock);
 	jingle_accept_call(client, p);
 	ast_mutex_unlock(&p->lock);
@@ -404,9 +408,9 @@
 
 static struct ast_rtp *jingle_get_rtp_peer(struct ast_channel *chan)
 {
-	struct jingle_pvt *p;
+	struct jingle_pvt *p = chan->tech_pvt;
 	struct ast_rtp *rtp = NULL;
-	p = chan->tech_pvt;
+
 	if (!p)
 		return NULL;
 	ast_mutex_lock(&p->lock);
@@ -444,7 +448,7 @@
 
 static int jingle_response(struct jingle *client, ikspak *pak, const char *reasonstr, const char *reasonstr2)
 {
-	iks *response, *error = NULL, *reason = NULL;
+	iks *response, *error = NULL, *reason;
 	int res = -1;
 
 	response = iks_new("iq");
@@ -570,7 +574,6 @@
 	struct sockaddr_in sin;
 	struct sockaddr_in dest;
 	struct in_addr us;
-
 	iks *iq, *jingle, *candidate;
 	char user[17], pass[17], preference[5], port[7];
 
@@ -595,7 +598,7 @@
 	}
 
 	if (!p) {
-		ast_log(LOG_NOTICE, "No matching jingle session!\n");
+		ast_log(LOG_NOTICE, "No matching jingle session - SID %s!\n", sid);
 		goto safeout;
 	}
 
@@ -692,15 +695,15 @@
 	struct aji_buddy *buddy;
 	char idroster[200];
 
-	ast_log(LOG_DEBUG, "The client is %s for alloc\n", client->name);
-	if (!sid && !strchr(from, '/')) {	/*I started call! */
+	if (option_debug)
+		ast_log(LOG_DEBUG, "The client is %s for alloc\n", client->name);
+	if (!sid && !strchr(from, '/')) {	/* I started call! */
 		if (!strcasecmp(client->name, "guest")) {
 			buddy = ASTOBJ_CONTAINER_FIND(&client->connection->buddies, from);
 			if (buddy)
 				resources = buddy->resources;
-		} else {
+		} else 
 			resources = client->buddy->resources;
-		}
 		while (resources) {
 			if (resources->cap->jingle) {
 				break;
@@ -763,17 +766,13 @@
 		what = i->capability;
 	else
 		what = global_capability;
-	tmp->nativeformats =
-		ast_codec_choose(&i->prefs, what,
-						 1) | (i->jointcapability & AST_FORMAT_VIDEO_MASK);
+	tmp->nativeformats = ast_codec_choose(&i->prefs, what, 1) | (i->jointcapability & AST_FORMAT_VIDEO_MASK);
 	fmt = ast_best_codec(tmp->nativeformats);
 
 	if (title)
-		ast_string_field_build(tmp, name, "Jingle/%s-%04lx", title,
-							   ast_random() & 0xffff);
+		ast_string_field_build(tmp, name, "Jingle/%s-%04lx", title, ast_random() & 0xffff);
 	else
-		ast_string_field_build(tmp, name, "Jingle/%s-%04lx", i->from,
-							   ast_random() & 0xffff);
+		ast_string_field_build(tmp, name, "Jingle/%s-%04lx", i->from, ast_random() & 0xffff);
 
 	if (i->rtp) {
 		tmp->fds[0] = ast_rtp_fd(i->rtp);
@@ -1066,9 +1065,9 @@
 static struct ast_frame *jingle_rtp_read(struct ast_channel *ast, struct jingle_pvt *p)
 {
 	struct ast_frame *f;
-	if (!p->rtp) {
+
+	if (!p->rtp)
 		return &ast_null_frame;
-	}
 	f = ast_rtp_read(p->rtp);
 	jingle_update_stun(p->parent, p);
 	if (p->owner) {
@@ -1239,8 +1238,8 @@
 }
 static int jingle_transmit_invite(struct jingle_pvt *p)
 {
-	struct jingle *jingle = NULL;
-	struct aji_client *client = NULL;
+	struct jingle *jingle;
+	struct aji_client *client;
 	iks *iq, *desc, *session;
 	iks *payload_eg711u, *payload_pcmu;
 
@@ -1277,6 +1276,7 @@
 	iks_delete(payload_pcmu);
 	return 0;
 }
+
 /* Not in use right now.
 static int jingle_auto_congest(void *nothing)
 {
@@ -1312,9 +1312,9 @@
 		ast_copy_string(p->ring, p->parent->connection->mid, sizeof(p->ring));
 		p->ringrule = iks_filter_add_rule(p->parent->connection->f, jingle_ringing_ack, p,
 							IKS_RULE_ID, p->ring, IKS_RULE_DONE);
-	} else {
+	} else
 		ast_log(LOG_WARNING, "Whoa, already have a ring rule!\n");
-	}
+
 	jingle_transmit_invite(p);
 	jingle_create_candidates(p->parent, p, p->sid, p->from);
 
@@ -1358,7 +1358,7 @@
 			if (sender && (sender[0] != '\0'))
 				to = strsep(&s, "/");
 			if (!to) {
-				ast_log(LOG_ERROR, "Bad arguments\n");
+				ast_log(LOG_ERROR, "Bad arguments in Jingle Dialstring: %s\n", (char*) data);
 				if (s)
 					free(s);
 				return NULL;
@@ -1367,15 +1367,15 @@
 	}
 	client = find_jingle(to, sender);
 	if (!client) {
-		ast_log(LOG_WARNING, "Could not find Recipiant.\n");
+		ast_log(LOG_WARNING, "Could not find recipient.\n");
 		if (s)
 			free(s);
 		return NULL;
 	}
 	p = jingle_alloc(client, to, NULL);
-	if (p) {
+	if (p)
 		chan = jingle_new(client, p, AST_STATE_DOWN, to);
-	}
+
 	return chan;
 }
 
@@ -1419,9 +1419,11 @@
 		/* New call */
 		jingle_newcall(client, pak);
 	} else if (iks_find_with_attrib(pak->x, GOOGLE_NODE, "type", GOOGLE_NEGOTIATE)) {
-		ast_log(LOG_DEBUG, "About to add candidate!\n");
+		if (option_debug > 2)
+			ast_log(LOG_DEBUG, "About to add candidate!\n");
 		jingle_add_candidate(client, pak);
-		ast_log(LOG_DEBUG, "Candidate Added!\n");
+		if (option_debug > 2)
+			ast_log(LOG_DEBUG, "Candidate Added!\n");
 	} else if (iks_find_with_attrib(pak->x, GOOGLE_NODE, "type", GOOGLE_ACCEPT)) {
 		jingle_is_answered(client, pak);
 	} else if (iks_find_with_attrib(pak->x, GOOGLE_NODE, "type", "content-info")) {
@@ -1481,11 +1483,13 @@
 	return res;
 }
 */
+
 static int jingle_create_member(char *label, struct ast_variable *var, int allowguest,
 								struct ast_codec_pref prefs, char *context,
 								struct jingle *member)
 {
 	struct aji_client *client;
+
 	if (!member)
 		ast_log(LOG_WARNING, "Out of memory.\n");
 
@@ -1550,10 +1554,8 @@
 	struct jingle_candidate *global_candidates = NULL;
 
 	cfg = ast_config_load(JINGLE_CONFIG);
-	if (!cfg) {
-		ast_log(LOG_WARNING, "No such configuration file %s\n", JINGLE_CONFIG);
+	if (!cfg)
 		return 0;
-	}
 
 	/* Copy the default jb config over global_jbconf */
 	memcpy(&global_jbconf, &default_jbconf, sizeof(struct ast_jb_conf));
@@ -1637,14 +1639,10 @@
 					ASTOBJ_UNREF(member, jingle_member_destroy);
 				}
 			} else {
-				if (jingle_create_member(cat, var, allowguest, prefs, context, member)) {
-					ASTOBJ_UNLOCK(member);
+				ASTOBJ_UNLOCK(member);
+				if (jingle_create_member(cat, var, allowguest, prefs, context, member))
 					ASTOBJ_CONTAINER_LINK(&jingles, member);
-					ASTOBJ_UNREF(member, jingle_member_destroy);
-				} else {
-					ASTOBJ_UNLOCK(member);
-					ASTOBJ_UNREF(member, jingle_member_destroy);
-				}
+				ASTOBJ_UNREF(member, jingle_member_destroy);
 			}
 		}
 		cat = ast_category_browse(cfg, cat);
@@ -1658,20 +1656,17 @@
 {
 	ASTOBJ_CONTAINER_INIT(&jingles);
 	if (!jingle_load_config()) {
-		ast_log(LOG_ERROR, "Unable to read config file %s\n", JINGLE_CONFIG);
+		ast_log(LOG_ERROR, "Unable to read config file %s. Not loading module.\n", JINGLE_CONFIG);
 		return 0;
 	}
 
 	sched = sched_context_create();
-
-	if (!sched) {
+	if (!sched) 
 		ast_log(LOG_WARNING, "Unable to create schedule context\n");
-	}
 
 	io = io_context_create();
-	if (!io) {
+	if (!io) 
 		ast_log(LOG_WARNING, "Unable to create I/O context\n");
-	}
 
 	if (ast_find_ourip(&__ourip, bindaddr)) {
 		ast_log(LOG_WARNING, "Unable to get own IP address, Jingle disabled\n");
@@ -1698,9 +1693,11 @@
 static int unload_module(void *mod)
 {
 	struct jingle_pvt *privates = NULL;
+
 	/* First, take us out of the channel loop */
 	ast_channel_unregister(&jingle_tech);
 	ast_rtp_proto_unregister(&jingle_rtp);
+
 	if (!ast_mutex_lock(&jinglelock)) {
 		/* Hangup all interfaces if they have an owner */
 		ASTOBJ_CONTAINER_TRAVERSE(&jingles, 1, {

Modified: trunk/res/res_jabber.c
URL: http://svn.digium.com/view/asterisk/trunk/res/res_jabber.c?rev=39229&r1=39228&r2=39229&view=diff
==============================================================================
--- trunk/res/res_jabber.c (original)
+++ trunk/res/res_jabber.c Mon Aug  7 16:15:28 2006
@@ -53,6 +53,7 @@
 
 #define JABBER_CONFIG "jabber.conf"
 
+/*-- Forward declarations */
 static int aji_highest_bit(int number);
 static void aji_buddy_destroy(struct aji_buddy *obj);
 static void aji_client_destroy(struct aji_client *obj);
@@ -93,49 +94,49 @@
 static iks *jabber_make_auth(iksid * id, const char *pass, const char *sid);
 
 static char debug_usage[] = 
-"Usage: JABBER debug\n" 
-"       Enables dumping of JABBER packets for debugging purposes.\n";
+"Usage: jabber debug\n" 
+"       Enables dumping of Jabber packets for debugging purposes.\n";
 
 static char no_debug_usage[] = 
-"Usage: JABBER no debug\n" 
-"       Disables dumping of JABBER packets for debugging purposes.\n";
+"Usage: jabber no debug\n" 
+"       Disables dumping of Jabber packets for debugging purposes.\n";
 
 static char reload_usage[] = 
-"Usage: JABBER reload\n" 
-"       Enables reloading of JABBER module.\n";
+"Usage: jabber reload\n" 
+"       Enables reloading of Jabber module.\n";
 
 static char test_usage[] = 
-"Usage: JABBER test [client]\n" 
+"Usage: jabber test [client]\n" 
 "       Sends test message for debugging purposes.  A specific client\n"
 "       as configured in jabber.conf can be optionally specified.\n";
 
 static struct ast_cli_entry aji_cli[] = {
-	{{ "jabber", "debug", NULL}, aji_do_debug, "Enable JABBER debugging", debug_usage },
-	{{ "jabber", "reload", NULL}, aji_do_reload, "Enable JABBER debugging", reload_usage },
+	{{ "jabber", "debug", NULL}, aji_do_debug, "Enable Jabber debugging", debug_usage },
+	{{ "jabber", "reload", NULL}, aji_do_reload, "Enable Jabber debugging", reload_usage },
 	{{ "jabber", "show", "connected", NULL}, aji_show_clients, "Show state of clients and components", debug_usage },
-	{{ "jabber", "no", "debug", NULL}, aji_no_debug, "Disable JABBER debug", no_debug_usage },
+	{{ "jabber", "no", "debug", NULL}, aji_no_debug, "Disable Jabber debug", no_debug_usage },
 	{{ "jabber", "test", NULL}, aji_test, "Shows roster, but is genearlly used for mog's debugging.", test_usage },
  };
 
-static const char *tdesc = "AJI - Asterisk JABBER Interface";
-
-static char *app_ajisend = "JABBERSend";
-
-static char *ajisend_synopsis = "JABBERSend(JABBER,ScreenName,Message)";
+static const char *tdesc = "AJI - Asterisk Jabber Interface";
+
+static char *app_ajisend = "JabberSend";
+
+static char *ajisend_synopsis = "JabberSend(jabber,screenname,message)";
 
 static char *ajisend_descrip =
-"JABBERSend(JABBER,ScreenName,Message)\n"
-"  JABBER - Client or transport Asterisk uses to connect to JABBER\n" 
+"JabberRSend(Jabber,ScreenName,Message)\n"
+"  Jabber - Client or transport Asterisk uses to connect to Jabber\n" 
 "  ScreenName - User Name to message.\n" 
 "  Message - Message to be sent to the buddy\n";
 
-static char *app_ajistatus = "JABBERStatus";
-
-static char *ajistatus_synopsis = "JABBERStatus(JABBER,ScreenName,Variable)";
+static char *app_ajistatus = "JabberStatus";
+
+static char *ajistatus_synopsis = "JabberStatus(Jabber,ScreenName,Variable)";
 
 static char *ajistatus_descrip =
-"JABBERStatus(JABBER,ScreenName,Variable)\n"
-"  JABBER - Client or transport Asterisk uses to connect to JABBER\n"
+"JabberStatus(Jabber,ScreenName,Variable)\n"
+"  Jabber - Client or transport Asterisk uses to connect to Jabber\n"
 "  ScreenName - User Name to retrieve status from.\n"
 "  Variable - Variable to store presence in will be 1-6.\n" 
 "             In order, Online, Chatty, Away, XAway, DND, Offline\n" 
@@ -145,7 +146,7 @@
 
 struct aji_capabilities *capabilities;
 
-/*! Global flags, initialized to default values */
+/*! \brief Global flags, initialized to default values */
 static struct ast_flags globalflags = { AJI_AUTOPRUNE | AJI_AUTOREGISTER };
 
 /*!
@@ -384,27 +385,26 @@
 	struct aji_client *client = NULL;
 
 	char *s = NULL, *sender = NULL, *recipient = NULL, *message = NULL;
-	if (data) {
-		s = ast_strdupa((char *) data);
-		if (s) {
-			sender = strsep(&s, "|");
-			if (sender && (sender[0] != '\0')) {
-				recipient = strsep(&s, "|");
-				if (recipient && (recipient[0] != '\0')) {
-					message = s;
-				} else {
-					ast_log(LOG_ERROR, "Bad arguments \n");
-					return -1;
-				}
+
+	if (!data) {
+		ast_log(LOG_ERROR, "Out of memory\n");
+		return -1;
+	}
+	s = ast_strdupa((char *) data);
+	if (s) {
+		sender = strsep(&s, "|");
+		if (sender && (sender[0] != '\0')) {
+			recipient = strsep(&s, "|");
+			if (recipient && (recipient[0] != '\0')) {
+				message = s;
+			} else {
+				ast_log(LOG_ERROR, "Bad arguments \n");
+				return -1;
 			}
 		}
-		client = ast_aji_get_client(sender);
-		if (!client) {
-			ast_log(LOG_WARNING, "Could not find Sender.\n");
-			return -1;
-		}
-	} else {
-		ast_log(LOG_ERROR, "Out of memory\n");
+	}
+	if (!(client = ast_aji_get_client(sender))) {
+		ast_log(LOG_WARNING, "Could not find Sender.\n");
 		return -1;
 	}
 	if (strchr(recipient, '@') && message)
@@ -419,6 +419,7 @@
 static void aji_log_hook(void *data, const char *xmpp, size_t size, int is_incoming)
 {
 	struct aji_client *client = ASTOBJ_REF((struct aji_client *) data);
+
 	if (client->debug == 1) {
 		if (is_incoming)
 			ast_verbose("\nJABBER: %s INCOMING: %s\n", client->name, xmpp);
@@ -539,84 +540,78 @@
 				}
 				break;
 			}
-		case IKS_NODE_ERROR:{
+		case IKS_NODE_ERROR: 
 				ast_log(LOG_ERROR, "JABBER: Node Error\n");
 				ASTOBJ_UNREF(client, aji_client_destroy);
 				return IKS_HOOK;
 				break;
-			}
-		case IKS_NODE_STOP:{
+		case IKS_NODE_STOP: 
 				ast_log(LOG_WARNING, "JABBER: Disconnected\n");
 				ASTOBJ_UNREF(client, aji_client_destroy);
 				return IKS_HOOK;
 				break;
-			}
 		}
 	} else if (client->state != AJI_CONNECTED && client->component == AJI_COMPONENT) {
 		switch (type) {
-		case IKS_NODE_START:{
+		case IKS_NODE_START:
+			if (client->state == AJI_DISCONNECTED) {
 				char secret[160], shasum[320], *handshake;
-				if (client->state == AJI_DISCONNECTED) {
-					sprintf(secret, "%s%s", pak->id, client->password);
-					ast_sha1_hash(shasum, secret);
+
+				sprintf(secret, "%s%s", pak->id, client->password);
+				ast_sha1_hash(shasum, secret);
+				handshake = NULL;
+				asprintf(&handshake, "<handshake>%s</handshake>", shasum);
+				if (handshake) {
+					iks_send_raw(client->p, handshake);
+					free(handshake);
 					handshake = NULL;
-					asprintf(&handshake, "<handshake>%s</handshake>", shasum);
-					if (handshake) {
-						iks_send_raw(client->p, handshake);
-						free(handshake);
-						handshake = NULL;
-					}
-					client->state = AJI_CONNECTED;
-					break;
 				}
+				client->state = AJI_CONNECTED;
 			}
-
-		case IKS_NODE_NORMAL:{
-				break;
-			}
-
-		case IKS_NODE_ERROR:{
-				ast_log(LOG_ERROR, "JABBER: Node Error\n");
-				ASTOBJ_UNREF(client, aji_client_destroy);
-				return IKS_HOOK;
-				break;
-			}
-		case IKS_NODE_STOP:{
-				ast_log(LOG_WARNING, "JABBER: Disconnected\n");
-				ASTOBJ_UNREF(client, aji_client_destroy);
-				return IKS_HOOK;
-				break;
-			}
+			break;
+
+		case IKS_NODE_NORMAL:
+			break;
+
+		case IKS_NODE_ERROR:
+			ast_log(LOG_ERROR, "JABBER: Node Error\n");
+			ASTOBJ_UNREF(client, aji_client_destroy);
+			return IKS_HOOK;
+
+		case IKS_NODE_STOP:
+			ast_log(LOG_WARNING, "JABBER: Disconnected\n");
+			ASTOBJ_UNREF(client, aji_client_destroy);
+			return IKS_HOOK;
 		}
 	}
 
 	switch (pak->type) {
 	case IKS_PAK_NONE:
-		if (option_verbose > 30)
+		if (option_verbose > 4)
 			ast_verbose(VERBOSE_PREFIX_3 "JABBER: I Don't know what to do with you NONE\n");
 		break;
 	case IKS_PAK_MESSAGE:
 		aji_handle_message(client, pak);
-		if (option_verbose > 30)
+		if (option_verbose > 4)
 			ast_verbose(VERBOSE_PREFIX_3 "JABBER: I Don't know what to do with you MESSAGE\n");
 		break;
 	case IKS_PAK_PRESENCE:
 		aji_handle_presence(client, pak);
-		if (option_verbose > 30)
+		if (option_verbose > 4)
 			ast_verbose(VERBOSE_PREFIX_3 "JABBER: I Do know how to handle presence!!\n");
 		break;
 	case IKS_PAK_S10N:
 		aji_handle_subscribe(client, pak);
-		if (option_verbose > 30)
+		if (option_verbose > 4)
 			ast_verbose(VERBOSE_PREFIX_3 "JABBER: I Dont know S10N subscribe!!\n");
 		break;
 	case IKS_PAK_IQ:
-		if (option_verbose > 30)
+		if (option_verbose > 4)
 			ast_verbose(VERBOSE_PREFIX_3 "JABBER: I Dont have an IQ!!!\n");
 		aji_handle_iq(client, node);
 		break;
 	default:
-		if (option_verbose > 30)
+		if (option_verbose > 4)
 			ast_verbose(VERBOSE_PREFIX_3 "JABBER: I Dont know %i\n", pak->type);
 		break;
 	}
@@ -682,7 +677,7 @@
 
 	if (!(node = iks_find_attrib(pak->query, "node"))) {
 		iks *iq = NULL, *query = NULL, *instructions = NULL;
-		char *explain = "Welcome to Asterisk the Open Source PBX.\n";
+		char *explain = "Welcome to Asterisk - the Open Source PBX.\n";
 		iq = iks_new("iq");
 		query = iks_new("query");
 		instructions = iks_new("instructions");
@@ -809,9 +804,8 @@
 static int aji_client_info_handler(void *data, ikspak *pak)
 {
 	struct aji_client *client = ASTOBJ_REF((struct aji_client *) data);
-	struct aji_buddy *buddy = NULL;
 	struct aji_resource *resource = NULL;
-	buddy = ASTOBJ_CONTAINER_FIND(&client->buddies, pak->from->partial);
+	struct aji_buddy *buddy = ASTOBJ_CONTAINER_FIND(&client->buddies, pak->from->partial);
 
 	resource = aji_find_resource(buddy, pak->from->resource);
 
@@ -873,7 +867,7 @@
 	char *node = NULL;
 
 	if (!(node = iks_find_attrib(pak->query, "node"))) {
-		iks *iq = NULL, *query = NULL, *identity = NULL, *disco = NULL, *reg = NULL, *commands = NULL, *gateway = NULL, *version = NULL, *vcard = NULL, *search = NULL;
+		iks *iq, *query, *identity, *disco, *reg, *commands, *gateway, *version, *vcard, *search;
 
 		iq = iks_new("iq");
 		query = iks_new("query");
@@ -939,7 +933,7 @@
 			iks_delete(search);
 
 	} else if (!strcasecmp(node, "http://jabber.org/protocol/commands")) {
-		iks *iq = NULL, *query = NULL, *confirm = NULL;
+		iks *iq, *query, *confirm;
 		iq = iks_new("iq");
 		query = iks_new("query");
 		confirm = iks_new("item");
@@ -968,11 +962,12 @@
 			iks_delete(confirm);
 
 	} else if (!strcasecmp(node, "confirmaccount")) {
-		iks *iq = NULL, *query = NULL, *feature = NULL;
+		iks *iq, *query, *feature;
 
 		iq = iks_new("iq");
 		query = iks_new("query");
 		feature = iks_new("feature");
+
 		if (iq && query && feature && client) {
 			iks_insert_attrib(iq, "from", client->user);
 			iks_insert_attrib(iq, "to", pak->from->full);
@@ -1005,7 +1000,7 @@
  */
 static void aji_handle_iq(struct aji_client *client, iks *node)
 {
-	if (option_verbose > 77)
+	if (option_verbose > 4)
 		ast_verbose("MWAHHAHAHA NOTHING TO SEE HERE!\n");
 }
 
@@ -1052,13 +1047,13 @@
 static void aji_handle_presence(struct aji_client *client, ikspak *pak)
 {
 	int status, priority;
-	struct aji_buddy *buddy = NULL;
+	struct aji_buddy *buddy;
 	struct aji_resource *tmp = NULL, *last = NULL, *found = NULL;
 	char *ver, *node, *descrip;
 	
-	if(client->state != AJI_CONNECTED) {
-		aji_create_buddy(pak->from->partial,client);
-	}
+	if(client->state != AJI_CONNECTED)
+		aji_create_buddy(pak->from->partial, client);
+
 	buddy = ASTOBJ_CONTAINER_FIND(&client->buddies, pak->from->partial);
 	if (!buddy) {
 		ast_log(LOG_NOTICE, "Got presence packet from %s, someone not in our roster!!!!\n", pak->from->partial);
@@ -1132,6 +1127,7 @@
 	if (!found && status != 6) {
 		found = (struct aji_resource *) malloc(sizeof(struct aji_resource));
 		memset(found, 0, sizeof(struct aji_resource));
+
 		if (!found) {
 			ast_log(LOG_ERROR, "Out of memory!\n");
 			return;
@@ -1172,7 +1168,7 @@
 		found->cap = aji_find_version(node, ver, pak);
 		if(gtalk_yuck(pak->x)) /* gtalk should do discover */
 			found->cap->jingle = 1;
-		if(found->cap->jingle)
+		if(found->cap->jingle && option_debug > 4)
 			ast_log(LOG_DEBUG,"Special case for google till they support discover.\n");
 		else {
 			iks *iq, *query;
@@ -1195,7 +1191,7 @@
 				iks_delete(iq);
 		}
 	}
-	if (option_verbose > 30) {
+	if (option_verbose > 4) {
 		switch (pak->subtype) {
 		case IKS_TYPE_AVAILABLE:
 			ast_verbose(VERBOSE_PREFIX_3 "JABBER: I am available ^_* %i\n", pak->subtype);
@@ -1204,7 +1200,7 @@
 			ast_verbose(VERBOSE_PREFIX_3 "JABBER: I am unavailable ^_* %i\n", pak->subtype);
 			break;
 		default:
-			ast_verbose(VERBOSE_PREFIX_3 "JABBER: Ohh sexy and the wrong type%i\n", pak->subtype);
+			ast_verbose(VERBOSE_PREFIX_3 "JABBER: Ohh sexy and the wrong type: %i\n", pak->subtype);
 		}
 		switch (pak->show) {
 		case IKS_SHOW_UNAVAILABLE:
@@ -1240,7 +1236,7 @@
 {
 	if(pak->subtype == IKS_TYPE_SUBSCRIBE)
 		iks_send(client->p, iks_make_s10n(IKS_TYPE_SUBSCRIBED, iks_find_attrib(pak->x, "from"), "Asterisk has approved subscription"));
-	if (option_verbose > 30) {
+	if (option_verbose > 4) {
 		switch (pak->subtype) {
 		case IKS_TYPE_SUBSCRIBE:
 			ast_verbose(VERBOSE_PREFIX_3 "JABBER: This is a subcription of type %i\n", pak->subtype);
@@ -1301,9 +1297,8 @@
 		iks_insert_attrib(iq, "id", client->mid);
 		ast_aji_increment_mid(client->mid);
 		iks_send(client->p, iq);
-	} else {
+	} else 
 		ast_log(LOG_ERROR, "Out of memory.\n");
-	}
 	return res;
 }
 
@@ -1326,9 +1321,8 @@
 		iks_insert_cdata(priority, "5", 1);
 		iks_insert_attrib(presence, "to", room);
 		res = iks_send(client->p, presence);
-	} else {
+	} else 
 		ast_log(LOG_ERROR, "Out of memory.\n");
-	}
 	if (presence)
 		iks_delete(presence);
 	if (priority)
@@ -1344,7 +1338,8 @@
 int ast_aji_invite_chat(struct aji_client *client, char *user, char *room, char *message)
 {
 	int res = 0;
-	iks *invite = NULL, *body = NULL, *namespace = NULL;
+	iks *invite, *body, *namespace;
+
 	invite = iks_new("message");
 	body = iks_new("body");
 	namespace = iks_new("x");
@@ -1358,9 +1353,8 @@
 		iks_insert_node(invite, body);
 		iks_insert_node(invite, namespace);
 		res = iks_send(client->p, invite);
-	} else {
+	} else 
 		ast_log(LOG_ERROR, "Out of memory.\n");
-	}
 	if (body)
 		iks_delete(body);
 	if (namespace)
@@ -1383,7 +1377,8 @@
 	do {
 		if (res != IKS_OK) {
 			while(res != IKS_OK) {
-				if(option_verbose > 3) ast_verbose("JABBER: reconnecting.\n");
+				if(option_verbose > 3)
+					ast_verbose("JABBER: reconnecting.\n");
 				res = aji_reconnect(client);
 				sleep(4);
 			}
@@ -1391,16 +1386,15 @@
 
 		res = iks_recv(client->p, 1);
 		client->timeout--;
-		if (res == IKS_HOOK) {
+		if (res == IKS_HOOK) 
 			ast_log(LOG_WARNING, "JABBER: Got hook event.\n");
-		} else if (res == IKS_NET_TLSFAIL) {
-			ast_log(LOG_WARNING, "JABBER:  Failure in tls.\n");
-		} else if (client->timeout == 0 && client->state == AJI_CONNECTED) {
+		else if (res == IKS_NET_TLSFAIL)
+			ast_log(LOG_WARNING, "JABBER:  Failure in TLS.\n");
+		else if (client->timeout == 0 && client->state == AJI_CONNECTED) {
 			res = -1;
 			ast_log(LOG_WARNING, "JABBER:  Network Timeout\n");
-		} else if (res == IKS_NET_RWERR) {
+		} else if (res == IKS_NET_RWERR)
 			ast_log(LOG_WARNING, "JABBER: socket read error\n");
-		}
 	} while (client);
 	ASTOBJ_UNREF(client, aji_client_destroy);
 	return 0;
@@ -1414,6 +1408,7 @@
 void ast_aji_increment_mid(char *mid)
 {
 	int i = 0;
+
 	for (i = strlen(mid) - 1; i >= 0; i--) {
 		if (mid[i] != 'z') {
 			mid[i] = mid[i] + 1;
@@ -1434,8 +1429,8 @@
 	struct aji_client *client = ASTOBJ_REF((struct aji_client *) data);
 	int res = 0;
 	struct aji_buddy *buddy = NULL;
-	iks *send = NULL;
-	send = iks_make_iq(IKS_TYPE_GET, "jabber:iq:register");
+	iks *send = iks_make_iq(IKS_TYPE_GET, "jabber:iq:register");
+
 	if (client && send) {
 		ASTOBJ_CONTAINER_TRAVERSE(&client->buddies, 1, {
 			ASTOBJ_RDLOCK(iterator); 
@@ -1451,9 +1446,9 @@
 		ast_aji_increment_mid(client->mid);
 		iks_insert_attrib(send, "from", client->user);
 		res = iks_send(client->p, send);
-	} else {
+	} else 
 		ast_log(LOG_ERROR, "Out of memory.\n");
-	}
+
 	if (send)
 		iks_delete(send);
 	ASTOBJ_UNREF(client, aji_client_destroy);
@@ -1471,11 +1466,11 @@
 	struct aji_client *client = ASTOBJ_REF((struct aji_client *) data);
 	int res = 0;
 	struct aji_buddy *buddy = NULL;
-	iks *regquery = NULL, *reguser = NULL, *regpass = NULL, *regiq = NULL;
-	regiq = iks_new("iq");
-	regquery = iks_new("query");
-	reguser = iks_new("username");
-	regpass = iks_new("password");
+
+	iks *regiq = iks_new("iq");
+	iks *regquery = iks_new("query");
+	iks *reguser = iks_new("username");
+	iks *regpass = iks_new("password");
 
 	if (client && regquery && reguser && regpass && regiq) {
 		ASTOBJ_CONTAINER_TRAVERSE(&client->buddies, 1, {
@@ -1496,9 +1491,8 @@
 		iks_insert_node(regquery, reguser);
 		iks_insert_node(regquery, regpass);
 		res = iks_send(client->p, regiq);
-	} else {
+	} else
 		ast_log(LOG_ERROR, "Out of memory.\n");
-	}
 	if (regiq)
 		iks_delete(regiq);
 	if (regquery)
@@ -1519,11 +1513,10 @@
 static void aji_pruneregister(struct aji_client *client)
 {
 	int res = 0;
-	iks *removeiq = NULL, *removequery = NULL, *removeitem = NULL, *send = NULL;
-	removeiq = iks_new("iq");
-	removequery = iks_new("query");
-	removeitem = iks_new("item");
-	send = iks_make_iq(IKS_TYPE_GET, "http://jabber.org/protocol/disco#items");
+	iks *removeiq = iks_new("iq");
+	iks *removequery = iks_new("query");
+	iks *removeitem = iks_new("item");
+	iks *send = iks_make_iq(IKS_TYPE_GET, "http://jabber.org/protocol/disco#items");
 
 	if (client && removeiq && removequery && removeitem && send) {
 		iks_insert_node(removeiq, removequery);
@@ -1561,9 +1554,8 @@
 			}
 			ASTOBJ_UNLOCK(iterator);
 		});
-	} else {
+	} else
 		ast_log(LOG_ERROR, "Out of memory.\n");
-	}
 	if (removeiq)
 		iks_delete(removeiq);
 	if (removequery)
@@ -1710,6 +1702,7 @@
 {
 	struct aji_client *client = ASTOBJ_REF((struct aji_client *) data);
 	int res = 0;
+
 	if (client) {
 		if (client->state == AJI_DISCONNECTED) {
 			iks_filter_add_rule(client->f, aji_filter_roster, client, IKS_RULE_TYPE, IKS_PAK_IQ, IKS_RULE_SUBTYPE, IKS_TYPE_RESULT, IKS_RULE_ID, "roster", IKS_RULE_DONE);
@@ -1719,9 +1712,8 @@
 			if(client->component == AJI_CLIENT)
 				aji_get_roster(client);
 		}
-	} else {
+	} else
 		ast_log(LOG_ERROR, "Out of memory.\n");
-	}
 
 	ASTOBJ_UNREF(client, aji_client_destroy);
 	return res;
@@ -1759,10 +1751,10 @@
 	int connected = 1;
 	connected = iks_connect_via(client->p, client->jid->server, client->port, client->user);
 	if (connected == IKS_NET_NOCONN)
-		ast_log(LOG_ERROR, "JABBER ERROR: No Connection");
-	if (connected == IKS_NET_NODNS)
-		ast_log(LOG_ERROR, "JABBER ERROR: No DNS");
-	if (!connected)
+		ast_log(LOG_ERROR, "JABBER ERROR: No Connection\n");
+	else if (connected == IKS_NET_NODNS)
+		ast_log(LOG_ERROR, "JABBER ERROR: No DNS\n");
+	else if (!connected)
 		iks_recv(client->p, 30);
 	return 1;
 }
@@ -1793,10 +1785,10 @@
 static void aji_set_presence(struct aji_client *client, char *user, int level, char *desc)
 {
 	int res = 0;
-	iks *presence = NULL, *priority, *cnode = NULL;
-	presence = iks_make_pres(level, desc);
-	cnode = iks_new("c");
-	priority = iks_new("priority");
+	iks *presence = iks_make_pres(level, desc);
+	iks *cnode = iks_new("c");
+	iks *priority = iks_new("priority");
+
 	iks_insert_cdata(priority, "0", 1);
 	if (presence && cnode && client) {
 		iks_insert_attrib(cnode, "node", "http://www.asterisk.org/xmpp/client/caps");
@@ -1805,9 +1797,8 @@
 		iks_insert_attrib(cnode, "xmlns", "http://jabber.org/protocol/caps");
 		iks_insert_node(presence, cnode);
 		res = iks_send(client->p, presence);
-	} else {
+	} else
 		ast_log(LOG_ERROR, "Out of memory.\n");
-	}
 	if (cnode)
 		iks_delete(cnode);
 	if (presence)
@@ -1826,8 +1817,7 @@
 		iterator->debug = 1;
 		ASTOBJ_UNLOCK(iterator);
 	});
-	if (option_verbose > 3)
-		ast_verbose(VERBOSE_PREFIX_3 "JABBER: Debugging Enabled.\n");
+	ast_cli(fd, "Jabber Debugging Enabled.\n");
 	return RESULT_SUCCESS;
 }
 
@@ -1839,8 +1829,7 @@
 static int aji_do_reload(int fd, int argc, char *argv[])
 {
 	aji_reload();
-	if (option_verbose > 3)
-		ast_verbose(VERBOSE_PREFIX_3 "JABBER: Reloaded.\n");
+	ast_cli(fd, "Jabber Reloaded.\n");
 	return RESULT_SUCCESS;
 }
 
@@ -1856,8 +1845,7 @@
 		iterator->debug = 0;
 		ASTOBJ_UNLOCK(iterator);
 	});
-	if (option_verbose > 2)
-		ast_verbose(VERBOSE_PREFIX_3 "JABBER: Debugging Disabled\n");
+	ast_cli(fd, "Jabber Debugging Disabled.\n");
 	return RESULT_SUCCESS;
 }
 
@@ -1868,9 +1856,12 @@
  */
 static int aji_show_clients(int fd, int argc, char *argv[])
 {
-	char *status = "";
+	char *status;
+	int count = 0;
+	ast_cli(fd, "Jabber Users and their status:\n");
 	ASTOBJ_CONTAINER_TRAVERSE(&clients, 1, {
 		ASTOBJ_RDLOCK(iterator);
+		count++;
 		switch (iterator->state) {
 		case AJI_DISCONNECTED:
 			status = "Disconnected";
@@ -1884,14 +1875,16 @@
 		default:
 			status = "Unknown";
 		}
-		ast_verbose("JABBER: User: %s is %s\n", iterator->user, status);
+		ast_cli(fd, "       User: %s     - %s\n", iterator->user, status);
 		ASTOBJ_UNLOCK(iterator);
 	});
+	ast_cli(fd, "----\n");
+	ast_cli(fd, "   Number of users: %d\n", count);
 	return RESULT_SUCCESS;
 }
 
 /*!
- * \brief send test message for debuging.
+ * \brief send test message for debugging.
  * \param fd, number of args, args.
  * \return RESULT_SUCCESS.
  */
@@ -1901,6 +1894,7 @@
 	struct aji_resource *resource;
 	const char *name = "asterisk";
 	struct aji_message *tmp;
+
 	if (argc > 3)
 		return RESULT_SHOWUSAGE;
 	else if (argc == 3)
@@ -1911,6 +1905,7 @@
 		return RESULT_FAILURE;
 	}
 
+	/* XXX Does Matt really want everyone to use his personal address for tests? */
 	ast_aji_send(client, "mogorman at astjab.org", "blahblah");
 	ASTOBJ_CONTAINER_TRAVERSE(&client->buddies, 1, {
 		ASTOBJ_RDLOCK(iterator);
@@ -1949,19 +1944,19 @@
 	char *resource;
 	struct aji_client *client = NULL;
 	int flag = 0;
+
 	client = ASTOBJ_CONTAINER_FIND(&clients,label);
-	if(!client) {
+	if (!client) {
 		flag = 1;
 		client = (struct aji_client *) malloc(sizeof(struct aji_client));
-		if(client) {
-			memset(client, 0, sizeof(struct aji_client));
-			ASTOBJ_INIT(client);
-			ASTOBJ_WRLOCK(client);
-			ASTOBJ_CONTAINER_INIT(&client->buddies);
-		} else {
+		if (!client) {
 			ast_log(LOG_ERROR, "Out of memory!\n");
 			return 0;
 		}
+		memset(client, 0, sizeof(struct aji_client));
+		ASTOBJ_INIT(client);
+		ASTOBJ_WRLOCK(client);
+		ASTOBJ_CONTAINER_INIT(&client->buddies);
 	} else {
 		ASTOBJ_WRLOCK(client);
 		ASTOBJ_UNMARK(client);
@@ -1983,8 +1978,10 @@
 	client->component = AJI_CLIENT;
 	ast_copy_string(client->statusmessage, "Online and Available", sizeof(client->statusmessage));
 
-	if (flag) client->authorized = 0;
-	if (flag) client->state = AJI_DISCONNECTED;
+	if (flag) {
+		client->authorized = 0;
+		client->state = AJI_DISCONNECTED;
+	}
 	while (var) {
 		if (!strcasecmp(var->name, "username"))
 			ast_copy_string(client->user, var->value, sizeof(client->user));
@@ -2000,7 +1997,7 @@
 			client->message_timeout = atoi(var->value);
 		else if (!strcasecmp(var->name, "debug"))
 			client->debug = (ast_false(var->value)) ? 0 : 1;
-		else if (!strcasecmp(var->name, "type")){
+		else if (!strcasecmp(var->name, "type")) {
 			if (!strcasecmp(var->value, "component"))
 				client->component = AJI_COMPONENT;
 		} else if (!strcasecmp(var->name, "usetls")) {
@@ -2021,55 +2018,55 @@
 				aji_create_transport(var->value, client);
 		var = var->next;
 	}
-	if(flag) {
-		client->p = iks_stream_new(((client->component == AJI_CLIENT) ? "jabber:client" : "jabber:component:accept"), client, aji_act_hook);
-		if (!client->p) {
-			ast_log(LOG_WARNING, "Failed to create stream for client '%s'!\n", client->name);
-			return 0;
-		}
-		client->stack = iks_stack_new(8192, 8192);
-		if (!client->stack) {
-			ast_log(LOG_WARNING, "Failed to allocate stack for client '%s'\n", client->name);
-			return 0;
-		}
-		client->f = iks_filter_new();
-		if (!client->f) {
-			ast_log(LOG_WARNING, "Failed to create filter for client '%s'\n", client->name);
-			return 0;
-		}
-		if (!strchr(client->user, '/') && client->component == AJI_CLIENT) {
-			resource = NULL;
-			asprintf(&resource, "%s/asterisk", client->user);
-			if (resource) {
-				client->jid = iks_id_new(client->stack, resource);
-				free(resource);
-			}
-		} else
-			client->jid = iks_id_new(client->stack, client->user);
-		if (client->component == AJI_COMPONENT) {
-			iks_filter_add_rule(client->f, aji_dinfo_handler, client, IKS_RULE_NS, "http://jabber.org/protocol/disco#info", IKS_RULE_DONE);
-			iks_filter_add_rule(client->f, aji_ditems_handler, client, IKS_RULE_NS, "http://jabber.org/protocol/disco#items", IKS_RULE_DONE);
-			iks_filter_add_rule(client->f, aji_register_query_handler, client, IKS_RULE_SUBTYPE, IKS_TYPE_GET, IKS_RULE_NS, "jabber:iq:register", IKS_RULE_DONE);
-			iks_filter_add_rule(client->f, aji_register_approve_handler, client, IKS_RULE_SUBTYPE, IKS_TYPE_SET, IKS_RULE_NS, "jabber:iq:register", IKS_RULE_DONE);
-		} else {
-			iks_filter_add_rule(client->f, aji_client_info_handler, client, IKS_RULE_NS, "http://jabber.org/protocol/disco#info", IKS_RULE_DONE);
-		}
-		if (!strchr(client->user, '/') && client->component == AJI_CLIENT) {
-			resource = NULL;
-			asprintf(&resource, "%s/asterisk", client->user);
-			if (resource) {
-				client->jid = iks_id_new(client->stack, resource);
-				free(resource);
-			}
-		} else
-			client->jid = iks_id_new(client->stack, client->user);
-		iks_set_log_hook(client->p, aji_log_hook);
-		ASTOBJ_UNLOCK(client);
-		ASTOBJ_CONTAINER_LINK(&clients,client);
-	} else {
+	if (!flag) {
 		ASTOBJ_UNLOCK(client);
 		ASTOBJ_UNREF(client, aji_client_destroy);
-	}
+		return 1;
+	}

[... 109 lines stripped ...]


More information about the asterisk-commits mailing list