Mercurial > pidgin
annotate src/protocols/msn/slpcall.h @ 13794:ecfd8fb02c19
[gaim-migrate @ 16206]
We don't really need to pop up an error if the sound file doesn't exist
committer: Tailor Script <tailor@pidgin.im>
| author | Sean Egan <seanegan@gmail.com> |
|---|---|
| date | Tue, 30 May 2006 17:02:27 +0000 |
| parents | 442b23efba54 |
| children |
| rev | line source |
|---|---|
| 9193 | 1 /** |
| 2 * @file slpcall.h SLP Call functions | |
| 3 * | |
| 4 * gaim | |
| 5 * | |
|
9198
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
6 * Gaim is the legal property of its developers, whose names are too numerous |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
7 * to list here. Please refer to the COPYRIGHT file distributed with this |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
8 * source distribution. |
| 9193 | 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 | |
| 11137 | 27 #include "internal.h" |
| 28 | |
| 9193 | 29 typedef struct _MsnSlpCall MsnSlpCall; |
| 30 | |
| 31 #include "slplink.h" | |
| 32 #include "slpsession.h" | |
| 33 | |
| 10225 | 34 /* The official client seems to timeout slp calls after 5 minutes */ |
| 35 #define MSN_SLPCALL_TIMEOUT 300000 | |
| 36 | |
| 9193 | 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 | |
| 10296 | 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 | |
| 9193 | 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; | |
|
9198
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
75 |
| 9193 | 76 MsnSlpCb cb; |
| 13125 | 77 void (*end_cb)(MsnSlpCall *slpcall, MsnSession *session); |
| 10225 | 78 |
| 79 int timer; | |
| 9193 | 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); | |
| 10225 | 89 gboolean msn_slp_call_timeout(gpointer data); |
| 9193 | 90 |
| 91 #endif /* _MSN_SLPCALL_H_ */ |
