comparison libpurple/protocols/simple/simple.h @ 15822: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
15821:84b0f9b23ede 15822:32c366eeeb99
1 /** 1 /**
2 * @file simple.h 2 * @file simple.h
3 * 3 *
4 * gaim 4 * purple
5 * 5 *
6 * Copyright (C) 2005, Thomas Butter <butter@uni-mannheim.de> 6 * Copyright (C) 2005, Thomas Butter <butter@uni-mannheim.de>
7 * 7 *
8 * This program is free software; you can redistribute it and/or modify 8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by 9 * it under the terms of the GNU General Public License as published by
18 * You should have received a copy of the GNU General Public License 18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software 19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */ 21 */
22 22
23 #ifndef _GAIM_SIMPLE_H 23 #ifndef _PURPLE_SIMPLE_H
24 #define _GAIM_SIMPLE_H 24 #define _PURPLE_SIMPLE_H
25 25
26 #include <glib.h> 26 #include <glib.h>
27 #include <time.h> 27 #include <time.h>
28 28
29 #include "cipher.h" 29 #include "cipher.h"
67 gchar *digest_session_key; 67 gchar *digest_session_key;
68 int retries; 68 int retries;
69 }; 69 };
70 70
71 struct simple_account_data { 71 struct simple_account_data {
72 GaimConnection *gc; 72 PurpleConnection *gc;
73 gchar *servername; 73 gchar *servername;
74 gchar *username; 74 gchar *username;
75 gchar *password; 75 gchar *password;
76 GaimDnsQueryData *query_data; 76 PurpleDnsQueryData *query_data;
77 GaimSrvQueryData *srv_query_data; 77 PurpleSrvQueryData *srv_query_data;
78 GaimNetworkListenData *listen_data; 78 PurpleNetworkListenData *listen_data;
79 int fd; 79 int fd;
80 int cseq; 80 int cseq;
81 time_t reregister; 81 time_t reregister;
82 time_t republish; 82 time_t republish;
83 int registerstatus; /* 0 nothing, 1 first registration send, 2 auth received, 3 registered */ 83 int registerstatus; /* 0 nothing, 1 first registration send, 2 auth received, 3 registered */
89 gchar *status; 89 gchar *status;
90 GHashTable *buddies; 90 GHashTable *buddies;
91 guint registertimeout; 91 guint registertimeout;
92 guint resendtimeout; 92 guint resendtimeout;
93 gboolean connecting; 93 gboolean connecting;
94 GaimAccount *account; 94 PurpleAccount *account;
95 GaimCircBuffer *txbuf; 95 PurpleCircBuffer *txbuf;
96 guint tx_handler; 96 guint tx_handler;
97 gchar *regcallid; 97 gchar *regcallid;
98 GSList *transactions; 98 GSList *transactions;
99 GSList *watcher; 99 GSList *watcher;
100 GSList *openconns; 100 GSList *openconns;
125 gchar *cseq; 125 gchar *cseq;
126 struct sipmsg *msg; 126 struct sipmsg *msg;
127 TransCallback callback; 127 TransCallback callback;
128 }; 128 };
129 129
130 #endif /* _GAIM_SIMPLE_H */ 130 #endif /* _PURPLE_SIMPLE_H */