media: do not set "controlling-mode" parameter
[siplcs.git] / src / purple / purple-private.h
blobe07fe7b58bbf68ab78d6553247f02be41b2fcf77
1 /**
2 * @file purple-private.h
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 /* Forward declarations */
24 struct sipe_core_public;
25 struct _PurpleAccount;
26 struct _PurpleConnection;
27 struct _PurpleSrvQueryData;
28 struct _PurpleXfer;
30 struct sipe_backend_private {
31 struct sipe_core_public *public;
32 struct _PurpleConnection *gc;
33 struct _PurpleAccount *account;
34 struct _PurpleSrvQueryData *dns_query;
35 time_t last_keepalive;
38 /**
39 * Initiates outgoing file transfer, sending @c file to remote peer identified
40 * by @c who.
42 * @param gc a PurpleConnection
43 * @param who string identifying receiver of the file
44 * @param file local file system path of the file to send
46 void sipe_ft_send_file(struct _PurpleConnection *gc,
47 const char *who,
48 const char *file);
50 /**
51 * Creates new PurpleXfer structure representing a file transfer.
53 * @param gc a PurpleConnection
54 * @param who remote participant in the file transfer session
56 struct _PurpleXfer *sipe_ft_new_xfer(struct _PurpleConnection *gc,
57 const char *who);
59 /* Convenience macros */
60 #define PURPLE_ACCOUNT_TO_SIPE_CORE_PUBLIC ((struct sipe_core_public *) account->gc->proto_data)
61 #define PURPLE_GC_TO_SIPE_CORE_PUBLIC ((struct sipe_core_public *) gc->proto_data)
64 Local Variables:
65 mode: c
66 c-file-style: "bsd"
67 indent-tabs-mode: t
68 tab-width: 8
69 End: