Thu, 24 Aug 2006 17:01:05 +0000
[gaim-migrate @ 17016]
this ought to fix debian bug 384463
| 4514 | 1 | /** |
|
7820
06fc9f66d2cb
[gaim-migrate @ 8472]
Mark Doliner <markdoliner@pidgin.im>
parents:
7805
diff
changeset
|
2 | * @file ft.h File Transfer API |
|
5034
077678f7b048
[gaim-migrate @ 5377]
Christian Hammond <chipx86@chipx86.com>
parents:
4675
diff
changeset
|
3 | * @ingroup core |
| 4514 | 4 | * |
| 5 | * gaim | |
| 6 | * | |
| 8046 | 7 | * Gaim is the legal property of its developers, whose names are too numerous |
| 8 | * to list here. Please refer to the COPYRIGHT file distributed with this | |
| 9 | * source distribution. | |
| 8231 | 10 | * |
| 4514 | 11 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of the GNU General Public License as published by | |
| 13 | * the Free Software Foundation; either version 2 of the License, or | |
| 14 | * (at your option) any later version. | |
| 15 | * | |
| 16 | * This program is distributed in the hope that it will be useful, | |
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 19 | * GNU General Public License for more details. | |
| 20 | * | |
| 21 | * You should have received a copy of the GNU General Public License | |
| 22 | * along with this program; if not, write to the Free Software | |
| 23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 24 | */ | |
| 25 | #ifndef _GAIM_FT_H_ | |
| 26 | #define _GAIM_FT_H_ | |
| 27 | ||
| 28 | /**************************************************************************/ | |
| 29 | /** Data Structures */ | |
| 30 | /**************************************************************************/ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
31 | typedef struct _GaimXfer GaimXfer; |
| 4514 | 32 | |
|
12151
8002bb57756b
[gaim-migrate @ 14452]
Richard Laager <rlaager@pidgin.im>
parents:
12150
diff
changeset
|
33 | #include <glib.h> |
|
8002bb57756b
[gaim-migrate @ 14452]
Richard Laager <rlaager@pidgin.im>
parents:
12150
diff
changeset
|
34 | #include <stdio.h> |
|
8002bb57756b
[gaim-migrate @ 14452]
Richard Laager <rlaager@pidgin.im>
parents:
12150
diff
changeset
|
35 | |
|
5872
754c63f29b77
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
36 | #include "account.h" |
|
754c63f29b77
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
37 | |
| 4514 | 38 | /** |
| 39 | * Types of file transfers. | |
| 40 | */ | |
| 41 | typedef enum | |
| 42 | { | |
| 43 | GAIM_XFER_UNKNOWN = 0, /**< Unknown file transfer type. */ | |
| 44 | GAIM_XFER_SEND, /**< File sending. */ | |
| 45 | GAIM_XFER_RECEIVE /**< File receiving. */ | |
| 46 | ||
| 47 | } GaimXferType; | |
| 48 | ||
| 7805 | 49 | /** |
| 50 | * The different states of the xfer. | |
| 51 | */ | |
| 7738 | 52 | typedef enum |
| 53 | { | |
| 7805 | 54 | GAIM_XFER_STATUS_UNKNOWN = 0, /**< Unknown, the xfer may be null. */ |
| 55 | GAIM_XFER_STATUS_NOT_STARTED, /**< It hasn't started yet. */ | |
|
8585
23db71a2d432
[gaim-migrate @ 9335]
Pekka Riikonen <priikone@silcnet.org>
parents:
8231
diff
changeset
|
56 | GAIM_XFER_STATUS_ACCEPTED, /**< Receive accepted, but destination file not selected yet */ |
| 7805 | 57 | GAIM_XFER_STATUS_STARTED, /**< gaim_xfer_start has been called. */ |
| 58 | GAIM_XFER_STATUS_DONE, /**< The xfer completed successfully. */ | |
| 59 | GAIM_XFER_STATUS_CANCEL_LOCAL, /**< The xfer was canceled by us. */ | |
|
7887
4b2925a88897
[gaim-migrate @ 8545]
Mark Doliner <markdoliner@pidgin.im>
parents:
7820
diff
changeset
|
60 | GAIM_XFER_STATUS_CANCEL_REMOTE /**< The xfer was canceled by the other end, or we couldn't connect. */ |
| 7805 | 61 | } GaimXferStatusType; |
| 7738 | 62 | |
| 4514 | 63 | /** |
| 64 | * File transfer UI operations. | |
| 65 | * | |
| 66 | * Any UI representing a file transfer must assign a filled-out | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
67 | * GaimXferUiOps structure to the gaim_xfer. |
| 4514 | 68 | */ |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
69 | typedef struct |
| 4514 | 70 | { |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
71 | void (*new_xfer)(GaimXfer *xfer); |
|
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
72 | void (*destroy)(GaimXfer *xfer); |
|
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
73 | void (*add_xfer)(GaimXfer *xfer); |
|
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
74 | void (*update_progress)(GaimXfer *xfer, double percent); |
|
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
75 | void (*cancel_local)(GaimXfer *xfer); |
|
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
76 | void (*cancel_remote)(GaimXfer *xfer); |
|
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
77 | |
|
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
78 | } GaimXferUiOps; |
| 4514 | 79 | |
| 80 | /** | |
| 81 | * A core representation of a file transfer. | |
| 82 | */ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
83 | struct _GaimXfer |
| 4514 | 84 | { |
|
7887
4b2925a88897
[gaim-migrate @ 8545]
Mark Doliner <markdoliner@pidgin.im>
parents:
7820
diff
changeset
|
85 | guint ref; /**< The reference count. */ |
| 4514 | 86 | GaimXferType type; /**< The type of transfer. */ |
| 87 | ||
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
88 | GaimAccount *account; /**< The account. */ |
| 4514 | 89 | |
| 90 | char *who; /**< The person on the other end of the | |
| 91 | transfer. */ | |
| 92 | ||
|
9933
61bd3fadbfe6
[gaim-migrate @ 10825]
Dave West <kat@users.sourceforge.net>
parents:
9511
diff
changeset
|
93 | char *message; /**< A message sent with the request */ |
|
4605
67526771e679
[gaim-migrate @ 4892]
Mark Doliner <markdoliner@pidgin.im>
parents:
4595
diff
changeset
|
94 | char *filename; /**< The name sent over the network. */ |
|
67526771e679
[gaim-migrate @ 4892]
Mark Doliner <markdoliner@pidgin.im>
parents:
4595
diff
changeset
|
95 | char *local_filename; /**< The name on the local hard drive. */ |
| 4514 | 96 | size_t size; /**< The size of the file. */ |
| 97 | ||
| 98 | FILE *dest_fp; /**< The destination file pointer. */ | |
| 99 | ||
| 100 | char *remote_ip; /**< The remote IP address. */ | |
| 101 | int local_port; /**< The local port. */ | |
| 102 | int remote_port; /**< The remote port. */ | |
| 103 | ||
| 104 | int fd; /**< The socket file descriptor. */ | |
| 105 | int watcher; /**< Watcher. */ | |
| 106 | ||
| 107 | size_t bytes_sent; /**< The number of bytes sent. */ | |
| 108 | size_t bytes_remaining; /**< The number of bytes remaining. */ | |
|
13599
b6369e541654
[gaim-migrate @ 15984]
Mark Doliner <markdoliner@pidgin.im>
parents:
13009
diff
changeset
|
109 | time_t start_time; /**< When the transfer of data began. */ |
|
b6369e541654
[gaim-migrate @ 15984]
Mark Doliner <markdoliner@pidgin.im>
parents:
13009
diff
changeset
|
110 | time_t end_time; /**< When the transfer of data ended. */ |
| 4514 | 111 | |
| 7805 | 112 | GaimXferStatusType status; /**< File Transfer's status. */ |
| 4538 | 113 | |
| 4514 | 114 | /* I/O operations. */ |
| 115 | struct | |
| 116 | { | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
117 | void (*init)(GaimXfer *xfer); |
| 7805 | 118 | void (*request_denied)(GaimXfer *xfer); |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
119 | void (*start)(GaimXfer *xfer); |
|
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
120 | void (*end)(GaimXfer *xfer); |
|
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
121 | void (*cancel_send)(GaimXfer *xfer); |
|
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
122 | void (*cancel_recv)(GaimXfer *xfer); |
|
12151
8002bb57756b
[gaim-migrate @ 14452]
Richard Laager <rlaager@pidgin.im>
parents:
12150
diff
changeset
|
123 | gssize (*read)(guchar **buffer, GaimXfer *xfer); |
|
8002bb57756b
[gaim-migrate @ 14452]
Richard Laager <rlaager@pidgin.im>
parents:
12150
diff
changeset
|
124 | gssize (*write)(const guchar *buffer, size_t size, GaimXfer *xfer); |
|
11159
76ef02141bcb
[gaim-migrate @ 13246]
Mark Doliner <markdoliner@pidgin.im>
parents:
11129
diff
changeset
|
125 | void (*ack)(GaimXfer *xfer, const guchar *buffer, size_t size); |
| 4514 | 126 | |
| 127 | } ops; | |
| 128 | ||
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
129 | GaimXferUiOps *ui_ops; /**< UI-specific operations. */ |
| 4514 | 130 | void *ui_data; /**< UI-specific data. */ |
| 131 | ||
| 132 | void *data; /**< prpl-specific data. */ | |
| 133 | }; | |
| 134 | ||
|
5944
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
135 | #ifdef __cplusplus |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
136 | extern "C" { |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
137 | #endif |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
138 | |
| 4514 | 139 | /**************************************************************************/ |
| 140 | /** @name File Transfer API */ | |
| 141 | /**************************************************************************/ | |
| 142 | /*@{*/ | |
| 143 | ||
| 144 | /** | |
| 145 | * Creates a new file transfer handle. | |
| 7805 | 146 | * This is called by prpls. |
| 147 | * The handle starts with a ref count of 1, and this reference | |
| 148 | * is owned by the core. The prpl normally does not need to | |
| 149 | * gaim_xfer_ref or unref. | |
| 4514 | 150 | * |
| 151 | * @param account The account sending or receiving the file. | |
| 152 | * @param type The type of file transfer. | |
| 153 | * @param who The name of the remote user. | |
| 154 | * | |
| 155 | * @return A file transfer handle. | |
| 156 | */ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
157 | GaimXfer *gaim_xfer_new(GaimAccount *account, |
| 4514 | 158 | GaimXferType type, const char *who); |
| 159 | ||
| 160 | /** | |
| 7805 | 161 | * Increases the reference count on a GaimXfer. |
| 162 | * Please call gaim_xfer_unref later. | |
| 4514 | 163 | * |
| 7805 | 164 | * @param xfer A file transfer handle. |
| 4514 | 165 | */ |
| 7805 | 166 | void gaim_xfer_ref(GaimXfer *xfer); |
| 167 | ||
| 168 | /** | |
| 169 | * Decreases the reference count on a GaimXfer. | |
| 170 | * If the reference reaches 0, gaim_xfer_destroy (an internal function) | |
| 171 | * will destroy the xfer. It calls the ui destroy cb first. | |
|
8735
01248ea222d3
[gaim-migrate @ 9490]
Jonathan Champ <royanee@users.sourceforge.net>
parents:
8585
diff
changeset
|
172 | * Since the core keeps a ref on the xfer, only an erroneous call to |
| 7805 | 173 | * this function will destroy the xfer while still in use. |
| 174 | * | |
| 175 | * @param xfer A file transfer handle. | |
| 176 | */ | |
| 177 | void gaim_xfer_unref(GaimXfer *xfer); | |
| 4514 | 178 | |
| 179 | /** | |
|
8585
23db71a2d432
[gaim-migrate @ 9335]
Pekka Riikonen <priikone@silcnet.org>
parents:
8231
diff
changeset
|
180 | * Requests confirmation for a file transfer from the user. If receiving |
|
23db71a2d432
[gaim-migrate @ 9335]
Pekka Riikonen <priikone@silcnet.org>
parents:
8231
diff
changeset
|
181 | * a file which is known at this point, this requests user to accept and |
|
23db71a2d432
[gaim-migrate @ 9335]
Pekka Riikonen <priikone@silcnet.org>
parents:
8231
diff
changeset
|
182 | * save the file. If the filename is unknown (not set) this only requests user |
|
23db71a2d432
[gaim-migrate @ 9335]
Pekka Riikonen <priikone@silcnet.org>
parents:
8231
diff
changeset
|
183 | * to accept the file transfer. In this case protocol must call this function |
|
23db71a2d432
[gaim-migrate @ 9335]
Pekka Riikonen <priikone@silcnet.org>
parents:
8231
diff
changeset
|
184 | * again once the filename is available. |
| 4514 | 185 | * |
| 186 | * @param xfer The file transfer to request confirmation on. | |
| 187 | */ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
188 | void gaim_xfer_request(GaimXfer *xfer); |
| 4514 | 189 | |
| 190 | /** | |
| 191 | * Called if the user accepts the file transfer request. | |
| 192 | * | |
| 193 | * @param xfer The file transfer. | |
| 194 | * @param filename The filename. | |
| 195 | */ | |
| 7805 | 196 | void gaim_xfer_request_accepted(GaimXfer *xfer, const char *filename); |
| 4514 | 197 | |
| 198 | /** | |
| 199 | * Called if the user rejects the file transfer request. | |
| 200 | * | |
| 201 | * @param xfer The file transfer. | |
| 202 | */ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
203 | void gaim_xfer_request_denied(GaimXfer *xfer); |
| 4514 | 204 | |
| 205 | /** | |
| 206 | * Returns the type of file transfer. | |
| 207 | * | |
| 208 | * @param xfer The file transfer. | |
| 209 | * | |
| 210 | * @return The type of the file transfer. | |
| 211 | */ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
212 | GaimXferType gaim_xfer_get_type(const GaimXfer *xfer); |
| 4514 | 213 | |
| 214 | /** | |
| 215 | * Returns the account the file transfer is using. | |
| 216 | * | |
| 217 | * @param xfer The file transfer. | |
| 218 | * | |
| 219 | * @return The account. | |
| 220 | */ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
221 | GaimAccount *gaim_xfer_get_account(const GaimXfer *xfer); |
| 4514 | 222 | |
| 223 | /** | |
| 7805 | 224 | * Returns the status of the xfer. |
| 225 | * | |
| 226 | * @param xfer The file transfer. | |
| 227 | * | |
| 228 | * @return The status. | |
| 229 | */ | |
| 230 | GaimXferStatusType gaim_xfer_get_status(const GaimXfer *xfer); | |
| 231 | ||
| 232 | /** | |
| 7738 | 233 | * Returns true if the file transfer was canceled. |
| 234 | * | |
| 235 | * @param xfer The file transfer. | |
| 236 | * | |
| 237 | * @return Whether or not the transfer was canceled. | |
| 238 | */ | |
| 7805 | 239 | gboolean gaim_xfer_is_canceled(const GaimXfer *xfer); |
| 7738 | 240 | |
| 241 | /** | |
|
4539
44671e1ce14e
[gaim-migrate @ 4818]
Christian Hammond <chipx86@chipx86.com>
parents:
4538
diff
changeset
|
242 | * Returns the completed state for a file transfer. |
|
44671e1ce14e
[gaim-migrate @ 4818]
Christian Hammond <chipx86@chipx86.com>
parents:
4538
diff
changeset
|
243 | * |
|
44671e1ce14e
[gaim-migrate @ 4818]
Christian Hammond <chipx86@chipx86.com>
parents:
4538
diff
changeset
|
244 | * @param xfer The file transfer. |
|
44671e1ce14e
[gaim-migrate @ 4818]
Christian Hammond <chipx86@chipx86.com>
parents:
4538
diff
changeset
|
245 | * |
|
44671e1ce14e
[gaim-migrate @ 4818]
Christian Hammond <chipx86@chipx86.com>
parents:
4538
diff
changeset
|
246 | * @return The completed state. |
|
44671e1ce14e
[gaim-migrate @ 4818]
Christian Hammond <chipx86@chipx86.com>
parents:
4538
diff
changeset
|
247 | */ |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
248 | gboolean gaim_xfer_is_completed(const GaimXfer *xfer); |
|
4539
44671e1ce14e
[gaim-migrate @ 4818]
Christian Hammond <chipx86@chipx86.com>
parents:
4538
diff
changeset
|
249 | |
|
44671e1ce14e
[gaim-migrate @ 4818]
Christian Hammond <chipx86@chipx86.com>
parents:
4538
diff
changeset
|
250 | /** |
| 4514 | 251 | * Returns the name of the file being sent or received. |
| 252 | * | |
| 253 | * @param xfer The file transfer. | |
| 254 | * | |
| 255 | * @return The filename. | |
| 256 | */ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
257 | const char *gaim_xfer_get_filename(const GaimXfer *xfer); |
| 4514 | 258 | |
| 259 | /** | |
| 260 | * Returns the file's destination filename, | |
| 261 | * | |
| 262 | * @param xfer The file transfer. | |
| 263 | * | |
| 264 | * @return The destination filename. | |
| 265 | */ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
266 | const char *gaim_xfer_get_local_filename(const GaimXfer *xfer); |
| 4514 | 267 | |
| 268 | /** | |
|
13009
12ef9f229961
[gaim-migrate @ 15362]
Daniel Atallah <datallah@pidgin.im>
parents:
12151
diff
changeset
|
269 | * Returns the number of bytes sent (or received) so far. |
| 4514 | 270 | * |
| 271 | * @param xfer The file transfer. | |
| 272 | * | |
| 273 | * @return The number of bytes sent. | |
| 274 | */ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
275 | size_t gaim_xfer_get_bytes_sent(const GaimXfer *xfer); |
| 4514 | 276 | |
| 277 | /** | |
|
13009
12ef9f229961
[gaim-migrate @ 15362]
Daniel Atallah <datallah@pidgin.im>
parents:
12151
diff
changeset
|
278 | * Returns the number of bytes remaining to send or receive. |
| 4514 | 279 | * |
| 280 | * @param xfer The file transfer. | |
| 281 | * | |
|
13009
12ef9f229961
[gaim-migrate @ 15362]
Daniel Atallah <datallah@pidgin.im>
parents:
12151
diff
changeset
|
282 | * @return The number of bytes remaining. |
| 4514 | 283 | */ |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
284 | size_t gaim_xfer_get_bytes_remaining(const GaimXfer *xfer); |
| 4514 | 285 | |
| 286 | /** | |
| 287 | * Returns the size of the file being sent or received. | |
| 288 | * | |
| 289 | * @param xfer The file transfer. | |
| 7805 | 290 | * |
| 4514 | 291 | * @return The total size of the file. |
| 292 | */ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
293 | size_t gaim_xfer_get_size(const GaimXfer *xfer); |
| 4514 | 294 | |
| 295 | /** | |
| 296 | * Returns the current percentage of progress of the transfer. | |
| 297 | * | |
| 298 | * This is a number between 0 (0%) and 1 (100%). | |
| 299 | * | |
| 300 | * @param xfer The file transfer. | |
| 301 | * | |
| 302 | * @return The percentage complete. | |
| 303 | */ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
304 | double gaim_xfer_get_progress(const GaimXfer *xfer); |
| 4514 | 305 | |
| 306 | /** | |
| 307 | * Returns the local port number in the file transfer. | |
| 308 | * | |
| 309 | * @param xfer The file transfer. | |
| 310 | * | |
| 311 | * @return The port number on this end. | |
| 312 | */ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
313 | unsigned int gaim_xfer_get_local_port(const GaimXfer *xfer); |
| 4514 | 314 | |
| 315 | /** | |
| 316 | * Returns the remote IP address in the file transfer. | |
| 317 | * | |
| 318 | * @param xfer The file transfer. | |
| 319 | * | |
| 320 | * @return The IP address on the other end. | |
| 321 | */ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
322 | const char *gaim_xfer_get_remote_ip(const GaimXfer *xfer); |
| 4514 | 323 | |
| 324 | /** | |
| 325 | * Returns the remote port number in the file transfer. | |
| 326 | * | |
| 327 | * @param xfer The file transfer. | |
| 328 | * | |
| 329 | * @return The port number on the other end. | |
| 330 | */ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
331 | unsigned int gaim_xfer_get_remote_port(const GaimXfer *xfer); |
| 4514 | 332 | |
| 333 | /** | |
| 4538 | 334 | * Sets the completed state for the file transfer. |
| 335 | * | |
| 336 | * @param xfer The file transfer. | |
| 337 | * @param completed The completed state. | |
| 338 | */ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
339 | void gaim_xfer_set_completed(GaimXfer *xfer, gboolean completed); |
| 4538 | 340 | |
| 341 | /** | |
| 4514 | 342 | * Sets the filename for the file transfer. |
| 343 | * | |
| 344 | * @param xfer The file transfer. | |
|
9933
61bd3fadbfe6
[gaim-migrate @ 10825]
Dave West <kat@users.sourceforge.net>
parents:
9511
diff
changeset
|
345 | * @param message The message. |
|
61bd3fadbfe6
[gaim-migrate @ 10825]
Dave West <kat@users.sourceforge.net>
parents:
9511
diff
changeset
|
346 | */ |
|
61bd3fadbfe6
[gaim-migrate @ 10825]
Dave West <kat@users.sourceforge.net>
parents:
9511
diff
changeset
|
347 | void gaim_xfer_set_message(GaimXfer *xfer, const char *message); |
|
61bd3fadbfe6
[gaim-migrate @ 10825]
Dave West <kat@users.sourceforge.net>
parents:
9511
diff
changeset
|
348 | |
|
61bd3fadbfe6
[gaim-migrate @ 10825]
Dave West <kat@users.sourceforge.net>
parents:
9511
diff
changeset
|
349 | /** |
|
61bd3fadbfe6
[gaim-migrate @ 10825]
Dave West <kat@users.sourceforge.net>
parents:
9511
diff
changeset
|
350 | * Sets the filename for the file transfer. |
|
61bd3fadbfe6
[gaim-migrate @ 10825]
Dave West <kat@users.sourceforge.net>
parents:
9511
diff
changeset
|
351 | * |
|
61bd3fadbfe6
[gaim-migrate @ 10825]
Dave West <kat@users.sourceforge.net>
parents:
9511
diff
changeset
|
352 | * @param xfer The file transfer. |
| 4514 | 353 | * @param filename The filename. |
| 354 | */ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
355 | void gaim_xfer_set_filename(GaimXfer *xfer, const char *filename); |
| 4514 | 356 | |
| 357 | /** | |
|
4605
67526771e679
[gaim-migrate @ 4892]
Mark Doliner <markdoliner@pidgin.im>
parents:
4595
diff
changeset
|
358 | * Sets the local filename for the file transfer. |
| 4514 | 359 | * |
| 360 | * @param xfer The file transfer. | |
| 361 | * @param filename The filename | |
| 362 | */ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
363 | void gaim_xfer_set_local_filename(GaimXfer *xfer, const char *filename); |
| 4514 | 364 | |
| 365 | /** | |
| 366 | * Sets the size of the file in a file transfer. | |
| 367 | * | |
| 368 | * @param xfer The file transfer. | |
| 369 | * @param size The size of the file. | |
| 370 | */ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
371 | void gaim_xfer_set_size(GaimXfer *xfer, size_t size); |
| 4514 | 372 | |
| 373 | /** | |
| 374 | * Returns the UI operations structure for a file transfer. | |
| 375 | * | |
| 376 | * @param xfer The file transfer. | |
| 377 | * | |
| 378 | * @return The UI operations structure. | |
| 379 | */ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
380 | GaimXferUiOps *gaim_xfer_get_ui_ops(const GaimXfer *xfer); |
| 4514 | 381 | |
| 382 | /** | |
| 383 | * Sets the read function for the file transfer. | |
| 384 | * | |
| 385 | * @param xfer The file transfer. | |
| 386 | * @param fnc The read function. | |
| 387 | */ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
388 | void gaim_xfer_set_read_fnc(GaimXfer *xfer, |
|
12151
8002bb57756b
[gaim-migrate @ 14452]
Richard Laager <rlaager@pidgin.im>
parents:
12150
diff
changeset
|
389 | gssize (*fnc)(guchar **, GaimXfer *)); |
| 4514 | 390 | |
| 391 | /** | |
| 392 | * Sets the write function for the file transfer. | |
| 393 | * | |
| 394 | * @param xfer The file transfer. | |
| 395 | * @param fnc The write function. | |
| 396 | */ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
397 | void gaim_xfer_set_write_fnc(GaimXfer *xfer, |
|
12151
8002bb57756b
[gaim-migrate @ 14452]
Richard Laager <rlaager@pidgin.im>
parents:
12150
diff
changeset
|
398 | gssize (*fnc)(const guchar *, size_t, GaimXfer *)); |
| 4514 | 399 | |
| 400 | /** | |
| 401 | * Sets the acknowledge function for the file transfer. | |
| 402 | * | |
| 403 | * @param xfer The file transfer. | |
| 404 | * @param fnc The acknowledge function. | |
| 405 | */ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
406 | void gaim_xfer_set_ack_fnc(GaimXfer *xfer, |
|
11159
76ef02141bcb
[gaim-migrate @ 13246]
Mark Doliner <markdoliner@pidgin.im>
parents:
11129
diff
changeset
|
407 | void (*fnc)(GaimXfer *, const guchar *, size_t)); |
| 4514 | 408 | |
| 409 | /** | |
| 7805 | 410 | * Sets the function to be called if the request is denied. |
| 411 | * | |
| 412 | * @param xfer The file transfer. | |
| 413 | * @param fnc The request denied prpl callback. | |
| 414 | */ | |
| 415 | void gaim_xfer_set_request_denied_fnc(GaimXfer *xfer, void (*fnc)(GaimXfer *)); | |
| 416 | ||
| 417 | /** | |
| 4514 | 418 | * Sets the transfer initialization function for the file transfer. |
| 419 | * | |
| 420 | * This function is required, and must call gaim_xfer_start() with | |
| 421 | * the necessary parameters. This will be called if the file transfer | |
| 422 | * is accepted by the user. | |
| 423 | * | |
| 424 | * @param xfer The file transfer. | |
| 425 | * @param fnc The transfer initialization function. | |
| 426 | */ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
427 | void gaim_xfer_set_init_fnc(GaimXfer *xfer, void (*fnc)(GaimXfer *)); |
| 4514 | 428 | |
| 429 | /** | |
| 430 | * Sets the start transfer function for the file transfer. | |
| 431 | * | |
| 432 | * @param xfer The file transfer. | |
| 433 | * @param fnc The start transfer function. | |
| 434 | */ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
435 | void gaim_xfer_set_start_fnc(GaimXfer *xfer, void (*fnc)(GaimXfer *)); |
| 4514 | 436 | |
| 437 | /** | |
| 438 | * Sets the end transfer function for the file transfer. | |
| 439 | * | |
| 440 | * @param xfer The file transfer. | |
| 441 | * @param fnc The end transfer function. | |
| 442 | */ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
443 | void gaim_xfer_set_end_fnc(GaimXfer *xfer, void (*fnc)(GaimXfer *)); |
| 4514 | 444 | |
| 445 | /** | |
|
4675
8e0a7b537ca2
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4605
diff
changeset
|
446 | * Sets the cancel send function for the file transfer. |
| 4514 | 447 | * |
| 448 | * @param xfer The file transfer. | |
|
4675
8e0a7b537ca2
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4605
diff
changeset
|
449 | * @param fnc The cancel send function. |
| 4514 | 450 | */ |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
451 | void gaim_xfer_set_cancel_send_fnc(GaimXfer *xfer, void (*fnc)(GaimXfer *)); |
|
4675
8e0a7b537ca2
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4605
diff
changeset
|
452 | |
|
8e0a7b537ca2
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4605
diff
changeset
|
453 | /** |
|
8e0a7b537ca2
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4605
diff
changeset
|
454 | * Sets the cancel receive function for the file transfer. |
|
8e0a7b537ca2
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4605
diff
changeset
|
455 | * |
|
8e0a7b537ca2
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4605
diff
changeset
|
456 | * @param xfer The file transfer. |
|
8e0a7b537ca2
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4605
diff
changeset
|
457 | * @param fnc The cancel receive function. |
|
8e0a7b537ca2
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4605
diff
changeset
|
458 | */ |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
459 | void gaim_xfer_set_cancel_recv_fnc(GaimXfer *xfer, void (*fnc)(GaimXfer *)); |
| 4514 | 460 | |
| 461 | /** | |
| 462 | * Reads in data from a file transfer stream. | |
| 463 | * | |
| 464 | * @param xfer The file transfer. | |
| 465 | * @param buffer The buffer that will be created to contain the data. | |
| 466 | * | |
| 8231 | 467 | * @return The number of bytes read, or -1. |
| 4514 | 468 | */ |
|
12151
8002bb57756b
[gaim-migrate @ 14452]
Richard Laager <rlaager@pidgin.im>
parents:
12150
diff
changeset
|
469 | gssize gaim_xfer_read(GaimXfer *xfer, guchar **buffer); |
| 4514 | 470 | |
| 471 | /** | |
| 472 | * Writes data to a file transfer stream. | |
| 473 | * | |
| 474 | * @param xfer The file transfer. | |
| 475 | * @param buffer The buffer to read the data from. | |
| 476 | * @param size The number of bytes to write. | |
| 477 | * | |
| 8231 | 478 | * @return The number of bytes written, or -1. |
| 4514 | 479 | */ |
|
12151
8002bb57756b
[gaim-migrate @ 14452]
Richard Laager <rlaager@pidgin.im>
parents:
12150
diff
changeset
|
480 | gssize gaim_xfer_write(GaimXfer *xfer, const guchar *buffer, gsize size); |
| 4514 | 481 | |
| 482 | /** | |
| 483 | * Starts a file transfer. | |
| 484 | * | |
| 485 | * Either @a fd must be specified <i>or</i> @a ip and @a port on a | |
| 486 | * file receive transfer. On send, @a fd must be specified, and | |
| 487 | * @a ip and @a port are ignored. | |
| 488 | * | |
| 489 | * @param xfer The file transfer. | |
| 490 | * @param fd The file descriptor for the socket. | |
| 491 | * @param ip The IP address to connect to. | |
| 492 | * @param port The port to connect to. | |
| 493 | */ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
494 | void gaim_xfer_start(GaimXfer *xfer, int fd, const char *ip, |
| 4514 | 495 | unsigned int port); |
| 496 | ||
| 497 | /** | |
| 498 | * Ends a file transfer. | |
| 499 | * | |
| 500 | * @param xfer The file transfer. | |
| 501 | */ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
502 | void gaim_xfer_end(GaimXfer *xfer); |
| 4514 | 503 | |
| 504 | /** | |
|
8585
23db71a2d432
[gaim-migrate @ 9335]
Pekka Riikonen <priikone@silcnet.org>
parents:
8231
diff
changeset
|
505 | * Adds a new file transfer to the list of file transfers. Call this only |
|
23db71a2d432
[gaim-migrate @ 9335]
Pekka Riikonen <priikone@silcnet.org>
parents:
8231
diff
changeset
|
506 | * if you are not using gaim_xfer_start. |
|
23db71a2d432
[gaim-migrate @ 9335]
Pekka Riikonen <priikone@silcnet.org>
parents:
8231
diff
changeset
|
507 | * |
|
23db71a2d432
[gaim-migrate @ 9335]
Pekka Riikonen <priikone@silcnet.org>
parents:
8231
diff
changeset
|
508 | * @param xfer The file transfer. |
|
23db71a2d432
[gaim-migrate @ 9335]
Pekka Riikonen <priikone@silcnet.org>
parents:
8231
diff
changeset
|
509 | */ |
|
23db71a2d432
[gaim-migrate @ 9335]
Pekka Riikonen <priikone@silcnet.org>
parents:
8231
diff
changeset
|
510 | void gaim_xfer_add(GaimXfer *xfer); |
|
23db71a2d432
[gaim-migrate @ 9335]
Pekka Riikonen <priikone@silcnet.org>
parents:
8231
diff
changeset
|
511 | |
|
23db71a2d432
[gaim-migrate @ 9335]
Pekka Riikonen <priikone@silcnet.org>
parents:
8231
diff
changeset
|
512 | /** |
|
4675
8e0a7b537ca2
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4605
diff
changeset
|
513 | * Cancels a file transfer on the local end. |
| 4514 | 514 | * |
| 515 | * @param xfer The file transfer. | |
| 516 | */ | |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
517 | void gaim_xfer_cancel_local(GaimXfer *xfer); |
|
4675
8e0a7b537ca2
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4605
diff
changeset
|
518 | |
|
8e0a7b537ca2
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4605
diff
changeset
|
519 | /** |
|
8e0a7b537ca2
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4605
diff
changeset
|
520 | * Cancels a file transfer from the remote end. |
|
8e0a7b537ca2
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4605
diff
changeset
|
521 | * |
|
8e0a7b537ca2
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4605
diff
changeset
|
522 | * @param xfer The file transfer. |
|
8e0a7b537ca2
[gaim-migrate @ 4986]
Christian Hammond <chipx86@chipx86.com>
parents:
4605
diff
changeset
|
523 | */ |
|
6240
0390b27fe09d
[gaim-migrate @ 6734]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
524 | void gaim_xfer_cancel_remote(GaimXfer *xfer); |
| 4514 | 525 | |
| 526 | /** | |
| 527 | * Displays a file transfer-related error message. | |
| 528 | * | |
|
5499
3490d628be1d
[gaim-migrate @ 5895]
Christian Hammond <chipx86@chipx86.com>
parents:
5495
diff
changeset
|
529 | * This is a wrapper around gaim_notify_error(), which automatically |
| 10654 | 530 | * specifies a title ("File transfer to <i>user</i> failed" or |
| 531 | * "File Transfer from <i>user</i> failed"). | |
| 4514 | 532 | * |
| 10654 | 533 | * @param type The type of file transfer. |
| 534 | * @param account The account sending or receiving the file. | |
| 535 | * @param who The user on the other end of the transfer. | |
| 536 | * @param msg The message to display. | |
| 4514 | 537 | */ |
| 10654 | 538 | void gaim_xfer_error(GaimXferType type, GaimAccount *account, const char *who, const char *msg); |
| 4514 | 539 | |
|
8585
23db71a2d432
[gaim-migrate @ 9335]
Pekka Riikonen <priikone@silcnet.org>
parents:
8231
diff
changeset
|
540 | /** |
|
23db71a2d432
[gaim-migrate @ 9335]
Pekka Riikonen <priikone@silcnet.org>
parents:
8231
diff
changeset
|
541 | * Updates file transfer progress. |
|
23db71a2d432
[gaim-migrate @ 9335]
Pekka Riikonen <priikone@silcnet.org>
parents:
8231
diff
changeset
|
542 | * |
|
23db71a2d432
[gaim-migrate @ 9335]
Pekka Riikonen <priikone@silcnet.org>
parents:
8231
diff
changeset
|
543 | * @param xfer The file transfer. |
|
23db71a2d432
[gaim-migrate @ 9335]
Pekka Riikonen <priikone@silcnet.org>
parents:
8231
diff
changeset
|
544 | */ |
|
23db71a2d432
[gaim-migrate @ 9335]
Pekka Riikonen <priikone@silcnet.org>
parents:
8231
diff
changeset
|
545 | void gaim_xfer_update_progress(GaimXfer *xfer); |
|
23db71a2d432
[gaim-migrate @ 9335]
Pekka Riikonen <priikone@silcnet.org>
parents:
8231
diff
changeset
|
546 | |
|
11084
b6acee973833
[gaim-migrate @ 13103]
Jonathan Clark <ardentlygnarly@users.sourceforge.net>
parents:
10654
diff
changeset
|
547 | /** |
|
b6acee973833
[gaim-migrate @ 13103]
Jonathan Clark <ardentlygnarly@users.sourceforge.net>
parents:
10654
diff
changeset
|
548 | * Displays a file transfer-related message in the conversation window |
|
b6acee973833
[gaim-migrate @ 13103]
Jonathan Clark <ardentlygnarly@users.sourceforge.net>
parents:
10654
diff
changeset
|
549 | * |
|
b6acee973833
[gaim-migrate @ 13103]
Jonathan Clark <ardentlygnarly@users.sourceforge.net>
parents:
10654
diff
changeset
|
550 | * This is a wrapper around gaim_conversation_write |
|
b6acee973833
[gaim-migrate @ 13103]
Jonathan Clark <ardentlygnarly@users.sourceforge.net>
parents:
10654
diff
changeset
|
551 | * |
|
b6acee973833
[gaim-migrate @ 13103]
Jonathan Clark <ardentlygnarly@users.sourceforge.net>
parents:
10654
diff
changeset
|
552 | * @param xfer The file transfer to which this message relates. |
|
b6acee973833
[gaim-migrate @ 13103]
Jonathan Clark <ardentlygnarly@users.sourceforge.net>
parents:
10654
diff
changeset
|
553 | * @param message The message to display. |
|
11129
c986d8566843
[gaim-migrate @ 13185]
Mark Doliner <markdoliner@pidgin.im>
parents:
11084
diff
changeset
|
554 | * @param is_error Is this an error message?. |
|
11084
b6acee973833
[gaim-migrate @ 13103]
Jonathan Clark <ardentlygnarly@users.sourceforge.net>
parents:
10654
diff
changeset
|
555 | */ |
|
b6acee973833
[gaim-migrate @ 13103]
Jonathan Clark <ardentlygnarly@users.sourceforge.net>
parents:
10654
diff
changeset
|
556 | void gaim_xfer_conversation_write(GaimXfer *xfer, char *message, gboolean is_error); |
|
b6acee973833
[gaim-migrate @ 13103]
Jonathan Clark <ardentlygnarly@users.sourceforge.net>
parents:
10654
diff
changeset
|
557 | |
|
6263
6fec763a314c
[gaim-migrate @ 6760]
Christian Hammond <chipx86@chipx86.com>
parents:
6241
diff
changeset
|
558 | /*@}*/ |
|
6fec763a314c
[gaim-migrate @ 6760]
Christian Hammond <chipx86@chipx86.com>
parents:
6241
diff
changeset
|
559 | |
|
6fec763a314c
[gaim-migrate @ 6760]
Christian Hammond <chipx86@chipx86.com>
parents:
6241
diff
changeset
|
560 | /**************************************************************************/ |
| 4514 | 561 | /** @name UI Registration Functions */ |
| 562 | /**************************************************************************/ | |
| 563 | /*@{*/ | |
| 564 | ||
| 565 | /** | |
|
11281
a5cda37a16be
[gaim-migrate @ 13478]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11159
diff
changeset
|
566 | * Returns the handle to the file transfer subsystem |
|
a5cda37a16be
[gaim-migrate @ 13478]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11159
diff
changeset
|
567 | * |
|
a5cda37a16be
[gaim-migrate @ 13478]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11159
diff
changeset
|
568 | * @return The handle |
|
a5cda37a16be
[gaim-migrate @ 13478]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11159
diff
changeset
|
569 | */ |
|
a5cda37a16be
[gaim-migrate @ 13478]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11159
diff
changeset
|
570 | void *gaim_xfers_get_handle(void); |
|
a5cda37a16be
[gaim-migrate @ 13478]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11159
diff
changeset
|
571 | |
|
a5cda37a16be
[gaim-migrate @ 13478]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11159
diff
changeset
|
572 | /** |
|
a5cda37a16be
[gaim-migrate @ 13478]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11159
diff
changeset
|
573 | * Initializes the file transfer subsystem |
|
a5cda37a16be
[gaim-migrate @ 13478]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11159
diff
changeset
|
574 | */ |
|
a5cda37a16be
[gaim-migrate @ 13478]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11159
diff
changeset
|
575 | void gaim_xfers_init(void); |
|
a5cda37a16be
[gaim-migrate @ 13478]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11159
diff
changeset
|
576 | |
|
a5cda37a16be
[gaim-migrate @ 13478]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11159
diff
changeset
|
577 | /** |
|
a5cda37a16be
[gaim-migrate @ 13478]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11159
diff
changeset
|
578 | * Uninitializes the file transfer subsystem |
|
a5cda37a16be
[gaim-migrate @ 13478]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11159
diff
changeset
|
579 | */ |
|
a5cda37a16be
[gaim-migrate @ 13478]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11159
diff
changeset
|
580 | void gaim_xfers_uninit(void); |
|
a5cda37a16be
[gaim-migrate @ 13478]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11159
diff
changeset
|
581 | |
|
a5cda37a16be
[gaim-migrate @ 13478]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11159
diff
changeset
|
582 | /** |
| 4514 | 583 | * Sets the UI operations structure to be used in all gaim file transfers. |
| 584 | * | |
|
6720
cdc5348dd848
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6269
diff
changeset
|
585 | * @param ops The UI operations structure. |
| 4514 | 586 | */ |
|
7035
76bca80cd91d
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
587 | void gaim_xfers_set_ui_ops(GaimXferUiOps *ops); |
| 4514 | 588 | |
| 589 | /** | |
| 590 | * Returns the UI operations structure to be used in all gaim file transfers. | |
| 591 | * | |
| 592 | * @return The UI operations structure. | |
| 593 | */ | |
|
7035
76bca80cd91d
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
594 | GaimXferUiOps *gaim_xfers_get_ui_ops(void); |
| 4514 | 595 | |
| 596 | /*@}*/ | |
| 597 | ||
|
5944
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
598 | #ifdef __cplusplus |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
599 | } |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
600 | #endif |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
601 | |
| 4514 | 602 | #endif /* _GAIM_FT_H_ */ |