comparison libpurple/protocols/qq/qq.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 b8572b937c09
comparison
equal deleted inserted replaced
15822:84b0f9b23ede 15823:32c366eeeb99
1 /** 1 /**
2 * @file qq.h 2 * @file qq.h
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
76 guint16 send_seq; /* send sequence number */ 76 guint16 send_seq; /* send sequence number */
77 guint8 login_mode; /* online of invisible */ 77 guint8 login_mode; /* online of invisible */
78 gboolean logged_in; /* used by qq-add_buddy */ 78 gboolean logged_in; /* used by qq-add_buddy */
79 gboolean use_tcp; /* network in tcp or udp */ 79 gboolean use_tcp; /* network in tcp or udp */
80 80
81 GaimProxyType proxy_type; 81 PurpleProxyType proxy_type;
82 GaimConnection *gc; 82 PurpleConnection *gc;
83 83
84 GaimXfer *xfer; /* file transfer handler */ 84 PurpleXfer *xfer; /* file transfer handler */
85 struct sockaddr_in dest_sin; 85 struct sockaddr_in dest_sin;
86 86
87 /* from real connction */ 87 /* from real connction */
88 gchar *server_ip; 88 gchar *server_ip;
89 guint16 server_port; 89 guint16 server_port;
100 time_t last_get_online; /* last time send get_friends_online packet */ 100 time_t last_get_online; /* last time send get_friends_online packet */
101 101
102 guint8 window[1 << 13]; /* check up for duplicated packet */ 102 guint8 window[1 << 13]; /* check up for duplicated packet */
103 gint sendqueue_timeout; 103 gint sendqueue_timeout;
104 104
105 GaimRoomlist *roomlist; 105 PurpleRoomlist *roomlist;
106 gint channel; /* the id for opened chat conversation */ 106 gint channel; /* the id for opened chat conversation */
107 107
108 GList *groups; 108 GList *groups;
109 GList *group_packets; 109 GList *group_packets;
110 GSList *joining_groups; 110 GSList *joining_groups;
120 /* TODO pass qq_send_packet_get_info() a callback and use signals to get rid of these */ 120 /* TODO pass qq_send_packet_get_info() a callback and use signals to get rid of these */
121 gboolean modifying_info; 121 gboolean modifying_info;
122 gboolean modifying_face; 122 gboolean modifying_face;
123 }; 123 };
124 124
125 void qq_function_not_implemented(GaimConnection *gc); 125 void qq_function_not_implemented(PurpleConnection *gc);
126 126
127 #endif 127 #endif