Mercurial > pidgin
comparison libpurple/protocols/msn/slpcall.h @ 15373:5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Sat, 20 Jan 2007 02:32:10 +0000 |
parents | |
children | 32c366eeeb99 |
comparison
equal
deleted
inserted
replaced
15372:f79e0f4df793 | 15373:5fe8042783c1 |
---|---|
1 /** | |
2 * @file slpcall.h SLP Call functions | |
3 * | |
4 * gaim | |
5 * | |
6 * Gaim is the legal property of its developers, whose names are too numerous | |
7 * to list here. Please refer to the COPYRIGHT file distributed with this | |
8 * source distribution. | |
9 * | |
10 * This program is free software; you can redistribute it and/or modify | |
11 * it under the terms of the GNU General Public License as published by | |
12 * the Free Software Foundation; either version 2 of the License, or | |
13 * (at your option) any later version. | |
14 * | |
15 * This program is distributed in the hope that it will be useful, | |
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 * GNU General Public License for more details. | |
19 * | |
20 * You should have received a copy of the GNU General Public License | |
21 * along with this program; if not, write to the Free Software | |
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
23 */ | |
24 #ifndef _MSN_SLPCALL_H_ | |
25 #define _MSN_SLPCALL_H_ | |
26 | |
27 #include "internal.h" | |
28 | |
29 typedef struct _MsnSlpCall MsnSlpCall; | |
30 | |
31 #include "slplink.h" | |
32 #include "slpsession.h" | |
33 | |
34 /* The official client seems to timeout slp calls after 5 minutes */ | |
35 #define MSN_SLPCALL_TIMEOUT 300000 | |
36 | |
37 typedef enum | |
38 { | |
39 MSN_SLPCALL_ANY, | |
40 MSN_SLPCALL_DC, | |
41 | |
42 } MsnSlpCallType; | |
43 | |
44 struct _MsnSlpCall | |
45 { | |
46 /* MsnSession *session; */ | |
47 MsnSlpLink *slplink; | |
48 | |
49 MsnSlpCallType type; | |
50 | |
51 /* Call-ID */ | |
52 char *id; | |
53 char *branch; | |
54 | |
55 long session_id; | |
56 long app_id; | |
57 | |
58 gboolean pending; /**< A flag that states if we should wait for this | |
59 slpcall to start and do not time out. */ | |
60 gboolean progress; /**< A flag that states if there has been progress since | |
61 the last time out. */ | |
62 gboolean wasted; /**< A flag that states if this slpcall is going to be | |
63 destroyed. */ | |
64 gboolean started; /**< A flag that states if this slpcall's session has | |
65 been initiated. */ | |
66 | |
67 void (*progress_cb)(MsnSlpCall *slpcall, | |
68 gsize total_length, gsize len, gsize offset); | |
69 void (*session_init_cb)(MsnSlpSession *slpsession); | |
70 | |
71 /* Can be checksum, or smile */ | |
72 char *data_info; | |
73 | |
74 void *xfer; | |
75 | |
76 MsnSlpCb cb; | |
77 void (*end_cb)(MsnSlpCall *slpcall, MsnSession *session); | |
78 | |
79 int timer; | |
80 }; | |
81 | |
82 MsnSlpCall *msn_slp_call_new(MsnSlpLink *slplink); | |
83 void msn_slp_call_init(MsnSlpCall *slpcall, MsnSlpCallType type); | |
84 void msn_slp_call_session_init(MsnSlpCall *slpcall); | |
85 void msn_slp_call_destroy(MsnSlpCall *slpcall); | |
86 void msn_slp_call_invite(MsnSlpCall *slpcall, const char *euf_guid, | |
87 int app_id, const char *context); | |
88 void msn_slp_call_close(MsnSlpCall *slpcall); | |
89 gboolean msn_slp_call_timeout(gpointer data); | |
90 | |
91 #endif /* _MSN_SLPCALL_H_ */ |