comparison libpurple/protocols/msn/slpmsg.c @ 15823:32c366eeeb99

sed -ie 's/gaim/purple/g'
author Sean Egan <seanegan@gmail.com>
date Mon, 19 Mar 2007 07:01:17 +0000
parents 5fe8042783c1
children 4fc51a87ce42
comparison
equal deleted inserted replaced
15822:84b0f9b23ede 15823:32c366eeeb99
1 /** 1 /**
2 * @file slpmsg.h SLP Message functions 2 * @file slpmsg.h SLP Message functions
3 * 3 *
4 * gaim 4 * purple
5 * 5 *
6 * Gaim is the legal property of its developers, whose names are too numerous 6 * Purple 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 7 * to list here. Please refer to the COPYRIGHT file distributed with this
8 * source distribution. 8 * source distribution.
9 * 9 *
10 * This program is free software; you can redistribute it and/or modify 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 11 * it under the terms of the GNU General Public License as published by
35 MsnSlpMessage *slpmsg; 35 MsnSlpMessage *slpmsg;
36 36
37 slpmsg = g_new0(MsnSlpMessage, 1); 37 slpmsg = g_new0(MsnSlpMessage, 1);
38 38
39 #ifdef MSN_DEBUG_SLPMSG 39 #ifdef MSN_DEBUG_SLPMSG
40 gaim_debug_info("msn", "slpmsg new (%p)\n", slpmsg); 40 purple_debug_info("msn", "slpmsg new (%p)\n", slpmsg);
41 #endif 41 #endif
42 42
43 slpmsg->slplink = slplink; 43 slpmsg->slplink = slplink;
44 44
45 slplink->slp_msgs = 45 slplink->slp_msgs =
55 GList *cur; 55 GList *cur;
56 56
57 g_return_if_fail(slpmsg != NULL); 57 g_return_if_fail(slpmsg != NULL);
58 58
59 #ifdef MSN_DEBUG_SLPMSG 59 #ifdef MSN_DEBUG_SLPMSG
60 gaim_debug_info("msn", "slpmsg destroy (%p)\n", slpmsg); 60 purple_debug_info("msn", "slpmsg destroy (%p)\n", slpmsg);
61 #endif 61 #endif
62 62
63 slplink = slpmsg->slplink; 63 slplink = slpmsg->slplink;
64 64
65 if (slpmsg->fp != NULL) 65 if (slpmsg->fp != NULL)
82 /* Ex: a user goes offline and after that we receive an ACK */ 82 /* Ex: a user goes offline and after that we receive an ACK */
83 83
84 MsnMessage *msg = cur->data; 84 MsnMessage *msg = cur->data;
85 85
86 #ifdef MSN_DEBUG_SLPMSG 86 #ifdef MSN_DEBUG_SLPMSG
87 gaim_debug_info("msn", "Unlink slpmsg callbacks.\n"); 87 purple_debug_info("msn", "Unlink slpmsg callbacks.\n");
88 #endif 88 #endif
89 89
90 msg->ack_cb = NULL; 90 msg->ack_cb = NULL;
91 msg->nak_cb = NULL; 91 msg->nak_cb = NULL;
92 msg->ack_data = NULL; 92 msg->ack_data = NULL;