digest: add support for OpenSSL 1.1.0
[siplcs.git] / src / core / sipe-appshare-client.h
blobc4a0f1f9ce1df587034c01fcdce029c4c656349a
1 /**
2 * @file sipe-appshare-client.h
4 * pidgin-sipe
6 * Copyright (C) 2016 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_private;
25 struct sipe_media_stream;
26 struct sipmsg;
28 struct sipe_rdp_client {
29 gchar *cmdline;
30 void *client_data;
32 GSocketAddress *(*get_listen_address_cb)(struct sipe_rdp_client *client);
33 gboolean (*launch_cb)(struct sipe_rdp_client *client,
34 GSocketAddress *listen_address,
35 struct sipe_media_stream *stream);
36 void (*free_cb)(struct sipe_rdp_client *client);
39 /* Client implementations */
40 void sipe_appshare_remmina_init(struct sipe_rdp_client *client);
41 void sipe_appshare_xfreerdp_init(struct sipe_rdp_client *client);