Added support for a message hook and simple message sending
[cascardo/chat.git] / hook.c
diff --git a/hook.c b/hook.c
index 43eeef2..e91e9fb 100644 (file)
--- a/hook.c
+++ b/hook.c
@@ -54,7 +54,11 @@ int
 hc_xmpp_hook (void *data, int type, iks *stanza)
 {
   hc_xmpp_t *xmpp = (hc_xmpp_t *) data;
-  if (!iks_strcmp (iks_name (stanza), "iq"))
+  if (!iks_strcmp (iks_name (stanza), "message"))
+    {
+      hc_xmpp_recv_message (xmpp, stanza);
+    }
+  else if (!iks_strcmp (iks_name (stanza), "iq"))
     {
       char *ns = iks_find_attrib (iks_child (stanza), "xmlns");
       hc_xmpp_hook_t hook;