2013-01-23 19:26:53 -05:00
|
|
|
/*
|
2013-02-02 14:47:41 -05:00
|
|
|
* iq.c
|
2013-01-23 19:26:53 -05:00
|
|
|
*
|
|
|
|
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
|
|
|
|
*
|
|
|
|
* This file is part of Profanity.
|
|
|
|
*
|
|
|
|
* Profanity is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Profanity is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Profanity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-02-02 15:55:58 -05:00
|
|
|
#include "config.h"
|
|
|
|
|
2013-01-23 19:26:53 -05:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <strophe.h>
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "contact_list.h"
|
|
|
|
#include "log.h"
|
2013-02-02 15:55:58 -05:00
|
|
|
#include "xmpp/capabilities.h"
|
2013-02-03 17:40:54 -05:00
|
|
|
#include "xmpp/connection.h"
|
2013-02-02 15:55:58 -05:00
|
|
|
#include "xmpp/iq.h"
|
|
|
|
#include "xmpp/stanza.h"
|
|
|
|
#include "xmpp/xmpp.h"
|
2013-01-23 19:26:53 -05:00
|
|
|
|
2013-01-24 19:36:09 -05:00
|
|
|
#define HANDLE(ns, type, func) xmpp_handler_add(conn, func, ns, STANZA_NAME_IQ, type, ctx)
|
|
|
|
|
|
|
|
static int _iq_handle_error(xmpp_conn_t * const conn,
|
|
|
|
xmpp_stanza_t * const stanza, void * const userdata);
|
|
|
|
static int _iq_handle_roster_set(xmpp_conn_t * const conn,
|
|
|
|
xmpp_stanza_t * const stanza, void * const userdata);
|
|
|
|
static int _iq_handle_roster_result(xmpp_conn_t * const conn,
|
|
|
|
xmpp_stanza_t * const stanza, void * const userdata);
|
|
|
|
static int _iq_handle_ping_get(xmpp_conn_t * const conn,
|
|
|
|
xmpp_stanza_t * const stanza, void * const userdata);
|
|
|
|
static int _iq_handle_version_get(xmpp_conn_t * const conn,
|
|
|
|
xmpp_stanza_t * const stanza, void * const userdata);
|
|
|
|
static int _iq_handle_discoinfo_get(xmpp_conn_t * const conn,
|
|
|
|
xmpp_stanza_t * const stanza, void * const userdata);
|
|
|
|
static int _iq_handle_discoinfo_result(xmpp_conn_t * const conn,
|
|
|
|
xmpp_stanza_t * const stanza, void * const userdata);
|
|
|
|
|
|
|
|
void
|
2013-01-28 18:54:49 -05:00
|
|
|
iq_add_handlers(void)
|
2013-01-23 19:26:53 -05:00
|
|
|
{
|
2013-02-03 17:40:54 -05:00
|
|
|
xmpp_conn_t * const conn = connection_get_conn();
|
|
|
|
xmpp_ctx_t * const ctx = connection_get_ctx();
|
2013-01-24 19:36:09 -05:00
|
|
|
HANDLE(NULL, STANZA_TYPE_ERROR, _iq_handle_error);
|
|
|
|
HANDLE(XMPP_NS_ROSTER, STANZA_TYPE_SET, _iq_handle_roster_set);
|
|
|
|
HANDLE(XMPP_NS_ROSTER, STANZA_TYPE_RESULT, _iq_handle_roster_result);
|
|
|
|
HANDLE(XMPP_NS_DISCO_INFO, STANZA_TYPE_GET, _iq_handle_discoinfo_get);
|
|
|
|
HANDLE(XMPP_NS_DISCO_INFO, STANZA_TYPE_RESULT, _iq_handle_discoinfo_result);
|
|
|
|
HANDLE(STANZA_NS_VERSION, STANZA_TYPE_GET, _iq_handle_version_get);
|
|
|
|
HANDLE(STANZA_NS_PING, STANZA_TYPE_GET, _iq_handle_ping_get);
|
|
|
|
}
|
2013-01-23 19:26:53 -05:00
|
|
|
|
2013-01-28 20:02:40 -05:00
|
|
|
void
|
|
|
|
iq_roster_request(void)
|
|
|
|
{
|
2013-02-03 17:40:54 -05:00
|
|
|
xmpp_conn_t * const conn = connection_get_conn();
|
|
|
|
xmpp_ctx_t * const ctx = connection_get_ctx();
|
2013-01-28 20:02:40 -05:00
|
|
|
xmpp_stanza_t *iq = stanza_create_roster_iq(ctx);
|
|
|
|
xmpp_send(conn, iq);
|
|
|
|
xmpp_stanza_release(iq);
|
|
|
|
}
|
|
|
|
|
2013-01-24 19:36:09 -05:00
|
|
|
static int
|
|
|
|
_iq_handle_error(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
|
|
|
|
void * const userdata)
|
|
|
|
{
|
|
|
|
const char *id = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_ID);
|
2013-01-23 19:26:53 -05:00
|
|
|
|
2013-01-24 19:36:09 -05:00
|
|
|
if (id != NULL) {
|
|
|
|
log_error("IQ error received, id: %s.", id);
|
|
|
|
} else {
|
|
|
|
log_error("IQ error recieved.");
|
2013-01-23 19:26:53 -05:00
|
|
|
}
|
|
|
|
|
2013-01-24 19:36:09 -05:00
|
|
|
return 1;
|
|
|
|
}
|
2013-01-23 19:26:53 -05:00
|
|
|
|
2013-01-24 19:36:09 -05:00
|
|
|
static int
|
|
|
|
_iq_handle_roster_set(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
|
|
|
|
void * const userdata)
|
|
|
|
{
|
|
|
|
xmpp_stanza_t *query = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_t *item =
|
|
|
|
xmpp_stanza_get_child_by_name(query, STANZA_NAME_ITEM);
|
2013-01-23 19:26:53 -05:00
|
|
|
|
2013-01-24 19:36:09 -05:00
|
|
|
if (item == NULL) {
|
|
|
|
return 1;
|
|
|
|
}
|
2013-01-23 19:26:53 -05:00
|
|
|
|
2013-01-24 19:36:09 -05:00
|
|
|
const char *jid = xmpp_stanza_get_attribute(item, STANZA_ATTR_JID);
|
|
|
|
const char *sub = xmpp_stanza_get_attribute(item, STANZA_ATTR_SUBSCRIPTION);
|
|
|
|
if (g_strcmp0(sub, "remove") == 0) {
|
|
|
|
contact_list_remove(jid);
|
|
|
|
return 1;
|
|
|
|
}
|
2013-01-23 19:26:53 -05:00
|
|
|
|
2013-01-24 19:36:09 -05:00
|
|
|
gboolean pending_out = FALSE;
|
|
|
|
const char *ask = xmpp_stanza_get_attribute(item, STANZA_ATTR_ASK);
|
|
|
|
if ((ask != NULL) && (strcmp(ask, "subscribe") == 0)) {
|
|
|
|
pending_out = TRUE;
|
|
|
|
}
|
2013-01-23 19:26:53 -05:00
|
|
|
|
2013-01-24 19:36:09 -05:00
|
|
|
contact_list_update_subscription(jid, sub, pending_out);
|
2013-01-23 19:26:53 -05:00
|
|
|
|
2013-01-24 19:36:09 -05:00
|
|
|
return 1;
|
|
|
|
}
|
2013-01-23 19:26:53 -05:00
|
|
|
|
2013-01-24 19:36:09 -05:00
|
|
|
static int
|
|
|
|
_iq_handle_roster_result(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
|
|
|
|
void * const userdata)
|
|
|
|
{
|
|
|
|
const char *id = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_ID);
|
2013-01-23 19:26:53 -05:00
|
|
|
|
2013-01-24 19:36:09 -05:00
|
|
|
// handle initial roster response
|
|
|
|
if (g_strcmp0(id, "roster") == 0) {
|
|
|
|
xmpp_stanza_t *query = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_t *item = xmpp_stanza_get_children(query);
|
2013-01-23 19:26:53 -05:00
|
|
|
|
2013-01-24 19:36:09 -05:00
|
|
|
while (item != NULL) {
|
2013-02-09 19:02:06 -05:00
|
|
|
const char *barejid = xmpp_stanza_get_attribute(item, STANZA_ATTR_JID);
|
2013-01-24 19:36:09 -05:00
|
|
|
const char *name = xmpp_stanza_get_attribute(item, STANZA_ATTR_NAME);
|
2013-01-23 19:26:53 -05:00
|
|
|
const char *sub = xmpp_stanza_get_attribute(item, STANZA_ATTR_SUBSCRIPTION);
|
|
|
|
|
|
|
|
gboolean pending_out = FALSE;
|
|
|
|
const char *ask = xmpp_stanza_get_attribute(item, STANZA_ATTR_ASK);
|
2013-01-24 19:36:09 -05:00
|
|
|
if (g_strcmp0(ask, "subscribe") == 0) {
|
2013-01-23 19:26:53 -05:00
|
|
|
pending_out = TRUE;
|
|
|
|
}
|
|
|
|
|
2013-02-09 19:02:06 -05:00
|
|
|
gboolean added = contact_list_add(barejid, name, "offline", NULL, sub,
|
2013-01-24 19:36:09 -05:00
|
|
|
pending_out);
|
2013-01-23 19:26:53 -05:00
|
|
|
|
2013-01-24 19:36:09 -05:00
|
|
|
if (!added) {
|
2013-02-09 19:02:06 -05:00
|
|
|
log_warning("Attempt to add contact twice: %s", barejid);
|
2013-01-23 19:26:53 -05:00
|
|
|
}
|
|
|
|
|
2013-01-24 19:36:09 -05:00
|
|
|
item = xmpp_stanza_get_next(item);
|
2013-01-23 19:26:53 -05:00
|
|
|
}
|
|
|
|
|
2013-01-30 19:40:27 -05:00
|
|
|
jabber_presence_t connect_presence = accounts_get_login_presence(jabber_get_account_name());
|
2013-01-30 19:01:38 -05:00
|
|
|
presence_update(connect_presence, NULL, 0);
|
2013-01-23 19:26:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2013-01-24 19:36:09 -05:00
|
|
|
_iq_handle_ping_get(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
|
|
|
|
void * const userdata)
|
2013-01-23 19:26:53 -05:00
|
|
|
{
|
2013-01-24 19:36:09 -05:00
|
|
|
xmpp_ctx_t *ctx = (xmpp_ctx_t *)userdata;
|
|
|
|
const char *id = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_ID);
|
|
|
|
const char *to = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_TO);
|
|
|
|
const char *from = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_FROM);
|
2013-01-23 19:26:53 -05:00
|
|
|
|
2013-01-24 19:36:09 -05:00
|
|
|
if ((from == NULL) || (to == NULL)) {
|
|
|
|
return 1;
|
|
|
|
}
|
2013-01-23 19:26:53 -05:00
|
|
|
|
2013-01-24 19:36:09 -05:00
|
|
|
xmpp_stanza_t *pong = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(pong, STANZA_NAME_IQ);
|
|
|
|
xmpp_stanza_set_attribute(pong, STANZA_ATTR_TO, from);
|
|
|
|
xmpp_stanza_set_attribute(pong, STANZA_ATTR_FROM, to);
|
|
|
|
xmpp_stanza_set_attribute(pong, STANZA_ATTR_TYPE, STANZA_TYPE_RESULT);
|
2013-01-23 19:26:53 -05:00
|
|
|
|
2013-01-24 19:36:09 -05:00
|
|
|
if (id != NULL) {
|
|
|
|
xmpp_stanza_set_attribute(pong, STANZA_ATTR_ID, id);
|
2013-01-23 19:26:53 -05:00
|
|
|
}
|
|
|
|
|
2013-01-24 19:36:09 -05:00
|
|
|
xmpp_send(conn, pong);
|
|
|
|
xmpp_stanza_release(pong);
|
2013-01-23 19:26:53 -05:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2013-01-24 19:36:09 -05:00
|
|
|
_iq_handle_version_get(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
|
|
|
|
void * const userdata)
|
2013-01-23 19:26:53 -05:00
|
|
|
{
|
2013-01-24 19:36:09 -05:00
|
|
|
xmpp_ctx_t *ctx = (xmpp_ctx_t *)userdata;
|
|
|
|
const char *id = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_ID);
|
|
|
|
const char *from = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_FROM);
|
|
|
|
|
2013-01-23 19:26:53 -05:00
|
|
|
if (from != NULL) {
|
|
|
|
xmpp_stanza_t *response = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(response, STANZA_NAME_IQ);
|
|
|
|
if (id != NULL) {
|
|
|
|
xmpp_stanza_set_id(response, id);
|
|
|
|
}
|
|
|
|
xmpp_stanza_set_attribute(response, STANZA_ATTR_TO, from);
|
|
|
|
xmpp_stanza_set_type(response, STANZA_TYPE_RESULT);
|
|
|
|
|
|
|
|
xmpp_stanza_t *query = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(query, STANZA_NAME_QUERY);
|
|
|
|
xmpp_stanza_set_ns(query, STANZA_NS_VERSION);
|
|
|
|
|
|
|
|
xmpp_stanza_t *name = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(name, "name");
|
|
|
|
xmpp_stanza_t *name_txt = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_text(name_txt, "Profanity");
|
|
|
|
xmpp_stanza_add_child(name, name_txt);
|
|
|
|
|
|
|
|
xmpp_stanza_t *version = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(version, "version");
|
|
|
|
xmpp_stanza_t *version_txt = xmpp_stanza_new(ctx);
|
|
|
|
GString *version_str = g_string_new(PACKAGE_VERSION);
|
|
|
|
if (strcmp(PACKAGE_STATUS, "development") == 0) {
|
|
|
|
g_string_append(version_str, "dev");
|
|
|
|
}
|
|
|
|
xmpp_stanza_set_text(version_txt, version_str->str);
|
|
|
|
xmpp_stanza_add_child(version, version_txt);
|
|
|
|
|
|
|
|
xmpp_stanza_add_child(query, name);
|
|
|
|
xmpp_stanza_add_child(query, version);
|
|
|
|
xmpp_stanza_add_child(response, query);
|
|
|
|
|
|
|
|
xmpp_send(conn, response);
|
|
|
|
|
|
|
|
xmpp_stanza_release(response);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2013-01-24 19:36:09 -05:00
|
|
|
_iq_handle_discoinfo_get(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
|
|
|
|
void * const userdata)
|
2013-01-23 19:26:53 -05:00
|
|
|
{
|
2013-01-24 19:36:09 -05:00
|
|
|
xmpp_ctx_t *ctx = (xmpp_ctx_t *)userdata;
|
|
|
|
const char *from = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_FROM);
|
|
|
|
|
2013-01-23 19:26:53 -05:00
|
|
|
xmpp_stanza_t *incoming_query = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_QUERY);
|
2013-01-24 19:36:09 -05:00
|
|
|
const char *node_str = xmpp_stanza_get_attribute(incoming_query, STANZA_ATTR_NODE);
|
2013-01-23 19:26:53 -05:00
|
|
|
|
|
|
|
if (from != NULL && node_str != NULL) {
|
|
|
|
xmpp_stanza_t *response = xmpp_stanza_new(ctx);
|
|
|
|
xmpp_stanza_set_name(response, STANZA_NAME_IQ);
|
|
|
|
xmpp_stanza_set_id(response, xmpp_stanza_get_id(stanza));
|
|
|
|
xmpp_stanza_set_attribute(response, STANZA_ATTR_TO, from);
|
|
|
|
xmpp_stanza_set_type(response, STANZA_TYPE_RESULT);
|
|
|
|
xmpp_stanza_t *query = caps_create_query_response_stanza(ctx);
|
|
|
|
xmpp_stanza_set_attribute(query, STANZA_ATTR_NODE, node_str);
|
|
|
|
xmpp_stanza_add_child(response, query);
|
|
|
|
xmpp_send(conn, response);
|
|
|
|
|
|
|
|
xmpp_stanza_release(response);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2013-01-24 19:36:09 -05:00
|
|
|
_iq_handle_discoinfo_result(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
|
|
|
|
void * const userdata)
|
2013-01-23 19:26:53 -05:00
|
|
|
{
|
2013-02-03 13:28:54 -05:00
|
|
|
log_debug("Recieved diso#info response");
|
2013-01-24 19:36:09 -05:00
|
|
|
const char *id = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_ID);
|
2013-01-23 19:26:53 -05:00
|
|
|
|
2013-01-24 19:36:09 -05:00
|
|
|
if ((id != NULL) && (g_str_has_prefix(id, "disco"))) {
|
2013-02-03 13:28:54 -05:00
|
|
|
log_debug("Response to query: %s", id);
|
2013-01-24 19:36:09 -05:00
|
|
|
xmpp_stanza_t *query = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_QUERY);
|
|
|
|
char *node = xmpp_stanza_get_attribute(query, STANZA_ATTR_NODE);
|
|
|
|
if (node == NULL) {
|
|
|
|
return 1;
|
|
|
|
}
|
2013-01-23 19:26:53 -05:00
|
|
|
|
2013-01-24 19:36:09 -05:00
|
|
|
char *caps_key = NULL;
|
2013-01-23 19:26:53 -05:00
|
|
|
|
2013-01-24 19:36:09 -05:00
|
|
|
// xep-0115
|
|
|
|
if (g_strcmp0(id, "disco") == 0) {
|
|
|
|
caps_key = strdup(node);
|
2013-01-23 19:26:53 -05:00
|
|
|
|
2013-01-24 19:36:09 -05:00
|
|
|
// validate sha1
|
|
|
|
gchar **split = g_strsplit(node, "#", -1);
|
|
|
|
char *given_sha1 = split[1];
|
|
|
|
char *generated_sha1 = caps_create_sha1_str(query);
|
|
|
|
|
|
|
|
if (g_strcmp0(given_sha1, generated_sha1) != 0) {
|
2013-02-03 13:28:54 -05:00
|
|
|
log_info("Generated sha-1 does not match given:");
|
|
|
|
log_info("Generated : %s", generated_sha1);
|
|
|
|
log_info("Given : %s", given_sha1);
|
2013-01-24 19:36:09 -05:00
|
|
|
FREE_SET_NULL(generated_sha1);
|
|
|
|
g_strfreev(split);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2013-01-23 19:26:53 -05:00
|
|
|
FREE_SET_NULL(generated_sha1);
|
|
|
|
g_strfreev(split);
|
|
|
|
|
2013-01-24 19:36:09 -05:00
|
|
|
// non supported hash, or legacy caps
|
|
|
|
} else {
|
|
|
|
caps_key = strdup(id + 6);
|
|
|
|
}
|
|
|
|
|
|
|
|
// already cached
|
|
|
|
if (caps_contains(caps_key)) {
|
|
|
|
log_info("Client info already cached.");
|
2013-01-23 19:26:53 -05:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-02-05 18:06:30 -05:00
|
|
|
DataForm *form = NULL;
|
|
|
|
FormField *formField = NULL;
|
2013-01-23 19:26:53 -05:00
|
|
|
|
2013-02-05 18:06:30 -05:00
|
|
|
const char *category = NULL;
|
|
|
|
const char *type = NULL;
|
|
|
|
const char *name = NULL;
|
|
|
|
const char *software = NULL;
|
|
|
|
const char *software_version = NULL;
|
|
|
|
const char *os = NULL;
|
|
|
|
const char *os_version = NULL;
|
2013-01-23 19:26:53 -05:00
|
|
|
|
2013-02-05 18:06:30 -05:00
|
|
|
xmpp_stanza_t *identity = xmpp_stanza_get_child_by_name(query, "identity");
|
|
|
|
if (identity != NULL) {
|
|
|
|
category = xmpp_stanza_get_attribute(identity, "category");
|
|
|
|
type = xmpp_stanza_get_attribute(identity, "type");
|
|
|
|
name = xmpp_stanza_get_attribute(identity, "name");
|
2013-01-24 19:36:09 -05:00
|
|
|
}
|
2013-01-23 19:26:53 -05:00
|
|
|
|
2013-02-05 18:06:30 -05:00
|
|
|
xmpp_stanza_t *softwareinfo = xmpp_stanza_get_child_by_ns(query, STANZA_NS_DATA);
|
|
|
|
if (softwareinfo != NULL) {
|
|
|
|
form = stanza_create_form(softwareinfo);
|
|
|
|
|
|
|
|
if (g_strcmp0(form->form_type, STANZA_DATAFORM_SOFTWARE) == 0) {
|
|
|
|
GSList *field = form->fields;
|
|
|
|
while (field != NULL) {
|
|
|
|
formField = field->data;
|
|
|
|
if (formField->values != NULL) {
|
|
|
|
if (strcmp(formField->var, "software") == 0) {
|
|
|
|
software = formField->values->data;
|
|
|
|
} else if (strcmp(formField->var, "software_version") == 0) {
|
|
|
|
software_version = formField->values->data;
|
|
|
|
} else if (strcmp(formField->var, "os") == 0) {
|
|
|
|
os = formField->values->data;
|
|
|
|
} else if (strcmp(formField->var, "os_version") == 0) {
|
|
|
|
os_version = formField->values->data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
field = g_slist_next(field);
|
|
|
|
}
|
|
|
|
}
|
2013-01-24 19:36:09 -05:00
|
|
|
}
|
2013-01-23 19:26:53 -05:00
|
|
|
|
2013-02-05 18:06:30 -05:00
|
|
|
caps_add(caps_key, category, type, name, software, software_version,
|
|
|
|
os, os_version);
|
2013-01-24 19:36:09 -05:00
|
|
|
|
2013-02-05 18:06:30 -05:00
|
|
|
//stanza_destroy_form(form);
|
2013-01-24 19:36:09 -05:00
|
|
|
free(caps_key);
|
2013-01-23 19:26:53 -05:00
|
|
|
|
2013-01-24 19:36:09 -05:00
|
|
|
return 1;
|
|
|
|
} else {
|
2013-01-23 19:26:53 -05:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|