coverity: fix two HFA warnings
[siplcs.git] / src / core / sipe-user.c
blobcc742a67fd72db04fa49e3d18df24c263be52507
1 /**
2 * @file sipe-user.c
4 * pidgin-sipe
6 * Copyright (C) 2010 SIPE Project <http://sipe.sourceforge.net/>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include <glib.h>
25 #include "sip-transport.h"
26 #include "sipe-core.h"
27 #include "sipe-core-private.h"
28 #include "sipe-dialog.h"
29 #include "sipe-session.h"
31 void sipe_core_user_feedback_typing(struct sipe_core_public *sipe_public,
32 const gchar *to)
34 struct sipe_core_private *sipe_private = SIPE_CORE_PRIVATE;
35 struct sip_session *session = sipe_session_find_im(sipe_private, to);
36 struct sip_dialog *dialog = sipe_dialog_find(session, to);
38 if (session && dialog && dialog->is_established) {
39 sip_transport_info(sipe_private,
40 "Content-Type: application/xml\r\n",
41 "<?xml version=\"1.0\"?>"
42 "<KeyboardActivity>"
43 "<status status=\"type\" />"
44 "</KeyboardActivity>",
45 dialog,
46 NULL);
52 Local Variables:
53 mode: c
54 c-file-style: "bsd"
55 indent-tabs-mode: t
56 tab-width: 8
57 End: