comparison libpurple/protocols/msn/nexus.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 60bc06498746
comparison
equal deleted inserted replaced
15821:84b0f9b23ede 15822:32c366eeeb99
1 /** 1 /**
2 * @file nexus.h MSN Nexus functions 2 * @file nexus.h MSN Nexus 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
31 MsnSession *session; 31 MsnSession *session;
32 32
33 char *login_host; 33 char *login_host;
34 char *login_path; 34 char *login_path;
35 GHashTable *challenge_data; 35 GHashTable *challenge_data;
36 GaimSslConnection *gsc; 36 PurpleSslConnection *gsc;
37 37
38 guint input_handler; 38 guint input_handler;
39 39
40 char *write_buf; 40 char *write_buf;
41 gsize written_len; 41 gsize written_len;
42 GaimInputFunction written_cb; 42 PurpleInputFunction written_cb;
43 43
44 char *read_buf; 44 char *read_buf;
45 gsize read_len; 45 gsize read_len;
46 }; 46 };
47 47