comparison src/protocols/sametime/meanwhile/srvc_ft.c @ 11943:0110fc7c6a8a

[gaim-migrate @ 14234] Bringing things up to date with the last Meanwhile release, 0.5.0 and the last gaim-meanwhile plugin release, 1.2.5 (which should be the last plugin release against oldstatus, if all goes well with HEAD and no major bugs crop up) It builds, so that's a start. The status bits that have been empty since the first import of the sametime stuff are still empty, but I'm going to try and fill those in tomorrow. I've decided to try and start using HEAD actively, to encourage me to get this freaking prpl fully functional. committer: Tailor Script <tailor@pidgin.im>
author Christopher O'Brien <siege@pidgin.im>
date Wed, 02 Nov 2005 03:39:03 +0000
parents 2ce8ec01a064
children
comparison
equal deleted inserted replaced
11942:a24cfe32961a 11943:0110fc7c6a8a
279 case msg_RECEIVED: 279 case msg_RECEIVED:
280 recv_RECEIVED(ft, data); 280 recv_RECEIVED(ft, data);
281 break; 281 break;
282 282
283 default: 283 default:
284 mw_debug_mailme(data, "unknown message in ft service: 0x%04x", type); 284 mw_mailme_opaque(data, "unknown message in ft service: 0x%04x", type);
285 } 285 }
286 } 286 }
287 287
288 288
289 static void clear(struct mwServiceFileTransfer *srvc) { 289 static void clear(struct mwServiceFileTransfer *srvc) {
355 g_return_val_if_fail(srvc != NULL, NULL); 355 g_return_val_if_fail(srvc != NULL, NULL);
356 return srvc->handler; 356 return srvc->handler;
357 } 357 }
358 358
359 359
360 const GList *
361 mwServiceFileTransfer_getTransfers(struct mwServiceFileTransfer *srvc) {
362 g_return_val_if_fail(srvc != NULL, NULL);
363 return srvc->transfers;
364 }
365
366
360 struct mwFileTransfer * 367 struct mwFileTransfer *
361 mwFileTransfer_new(struct mwServiceFileTransfer *srvc, 368 mwFileTransfer_new(struct mwServiceFileTransfer *srvc,
362 const struct mwIdBlock *who, const char *msg, 369 const struct mwIdBlock *who, const char *msg,
363 const char *filename, guint32 filesize) { 370 const char *filename, guint32 filesize) {
364 371