X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fmodules%2Fxmpp%2Fxmpp_query_namespace.c;h=8bb9b442b283082cce6574b7c1a622c640a32aba;hb=85a4d8d0b5af0edda2a0fa27c66457b775eb1209;hp=e791f3e6bcac09305038cb502165288ee9976b4a;hpb=62e5cd8b5bcf983f843a7e27d0ecddc4b11b13c3;p=citadel.git diff --git a/citadel/modules/xmpp/xmpp_query_namespace.c b/citadel/modules/xmpp/xmpp_query_namespace.c index e791f3e6b..8bb9b442b 100644 --- a/citadel/modules/xmpp/xmpp_query_namespace.c +++ b/citadel/modules/xmpp/xmpp_query_namespace.c @@ -61,16 +61,19 @@ */ void xmpp_roster_item(struct CitContext *cptr) { + struct CitContext *CCC=CC; - XPUT("cs_inet_email, strlen(cptr->cs_inet_email)); - XPUT("\" name=\""); - XPutProp(cptr->user.fullname, strlen(cptr->user.fullname)); - XPUT("\">" - ""); - XPutBody(CFG_KEY(c_humannode)); - XPUT("" - ""); + XPrint(HKEY("item"), 0, + XCPROPERTY("subscription", "both"), + XPROPERTY("jid", CCC->cs_inet_email, strlen(CCC->cs_inet_email)), + XPROPERTY("name", cptr->user.fullname, strlen(cptr->user.fullname)), + TYPE_ARGEND); + + XPrint(HKEY("group"), XCLOSED, + XCFGBODY(c_humannode), + TYPE_ARGEND); + + XPUT(""); } /* @@ -109,11 +112,17 @@ xmpp_query_namespace(purple5b5c1e5a, , vcard-temp:query) * */ -void xmpp_query_namespace(char *iq_id, char *iq_from, char *iq_to, char *query_xmlns) +void xmpp_query_namespace(TheToken_iq *IQ/*char *iq_id, char *iq_from, char *iq_to*/, char *query_xmlns) { int supported_namespace = 0; int roster_query = 0; - + const char *TypeStr; + long TLen; + ConstStr Type[] = { + {HKEY("result")}, + {HKEY("error")} + }; + /* We need to know before we begin the response whether this is a supported namespace, so * unfortunately all supported namespaces need to be defined here *and* down below where * they are handled. @@ -125,25 +134,24 @@ void xmpp_query_namespace(char *iq_id, char *iq_from, char *iq_to, char *query_x supported_namespace = 1; } - XMPP_syslog(LOG_DEBUG, "xmpp_query_namespace(%s, %s, %s, %s)\n", iq_id, iq_from, iq_to, query_xmlns); + XMPP_syslog(LOG_DEBUG, "xmpp_query_namespace(%s, %s, %s, %s)\n", ChrPtr(IQ->id), ChrPtr(IQ->from), ChrPtr(IQ->to), query_xmlns); /* * Beginning of query result. */ if (supported_namespace) { - XPUT(""); + + XPrint(HKEY("iq"), 0, + XPROPERTY("type", TypeStr, TLen), + XSPROPERTY("to", IQ->from), + XSPROPERTY("id", IQ->id)); /* * Is this a query we know how to handle?