comparison libpurple/protocols/msn/servconn.h @ 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 44b4e8bd759b
comparison
equal deleted inserted replaced
15822:84b0f9b23ede 15823:32c366eeeb99
1 /** 1 /**
2 * @file servconn.h Server connection functions 2 * @file servconn.h Server connection 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
61 { 61 {
62 MsnServConnType type; /**< The type of this connection. */ 62 MsnServConnType type; /**< The type of this connection. */
63 MsnSession *session; /**< The MSN session of this connection. */ 63 MsnSession *session; /**< The MSN session of this connection. */
64 MsnCmdProc *cmdproc; /**< The command processor of this connection. */ 64 MsnCmdProc *cmdproc; /**< The command processor of this connection. */
65 65
66 GaimProxyConnectData *connect_data; 66 PurpleProxyConnectData *connect_data;
67 67
68 gboolean connected; /**< A flag that states if it's connected. */ 68 gboolean connected; /**< A flag that states if it's connected. */
69 gboolean processing; /**< A flag that states if something is working 69 gboolean processing; /**< A flag that states if something is working
70 with this connection. */ 70 with this connection. */
71 gboolean wasted; /**< A flag that states if it should be destroyed. */ 71 gboolean wasted; /**< A flag that states if it should be destroyed. */
84 84
85 size_t payload_len; /**< The length of the payload. 85 size_t payload_len; /**< The length of the payload.
86 It's only set when we've received a command that 86 It's only set when we've received a command that
87 has a payload. */ 87 has a payload. */
88 88
89 GaimCircBuffer *tx_buf; 89 PurpleCircBuffer *tx_buf;
90 guint tx_handler; 90 guint tx_handler;
91 91
92 void (*connect_cb)(MsnServConn *); /**< The callback to call when connecting. */ 92 void (*connect_cb)(MsnServConn *); /**< The callback to call when connecting. */
93 void (*disconnect_cb)(MsnServConn *); /**< The callback to call when disconnecting. */ 93 void (*disconnect_cb)(MsnServConn *); /**< The callback to call when disconnecting. */
94 void (*destroy_cb)(MsnServConn *); /**< The callback to call when destroying. */ 94 void (*destroy_cb)(MsnServConn *); /**< The callback to call when destroying. */