comparison src/account.h @ 6621:42fdf16f1dad

[gaim-migrate @ 7145] Individual accounts remember the "No Proxy" setting instead of reverting back to "Use Global Proxy Settings" Proxy settings for individual accounts do not revert to "No Proxy" if you open an account, don't change the proxy drop down, then save the account. Those two sound like the same thing, but they're different. I think. Added the "use environmental variables" setting in a way that isn't horrible. We're not using that thing that splits the proxy variable into host:port yet. I'll do that later. I would have done that earlier, but I had to go buy a bike. Also, I'd like to show what the environmental variables are set to somewhere. That'll come later. Also a patch from Robot101: (22:10:25) Bzubhipheron: I have a patch that replaces #define WFLAG_* with GaimMessageFlags GAIM_MESSAGE_* (22:10:30) Bzubhipheron: (an enum in disguise) (22:14:18) Bzubhipheron: GaimMessageFlags protrays much better typing information than "int". most of the other #defines are gone, and glib standardises on enums for its flags too. (22:14:27) Bzubhipheron: (gone or going) (22:14:45) Bzubhipheron: and it makes the prototype of my message queueing stuff prettier. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 25 Aug 2003 02:49:42 +0000
parents 943b03bcecf5
children 41120df7ed94
comparison
equal deleted inserted replaced
6620:7230e5920911 6621:42fdf16f1dad
39 DENY_SOME 39 DENY_SOME
40 }; 40 };
41 41
42 struct _GaimAccount 42 struct _GaimAccount
43 { 43 {
44 char *username; /**< The username. */ 44 char *username; /**< The username. */
45 char *alias; /**< The current alias. */ 45 char *alias; /**< The current alias. */
46 char *password; /**< The account password. */ 46 char *password; /**< The account password. */
47 char *user_info; /**< User information. */ 47 char *user_info; /**< User information. */
48 48
49 char *buddy_icon; /**< The buddy icon. */ 49 char *buddy_icon; /**< The buddy icon. */
50 50
51 gboolean remember_pass; /**< Remember the password. */ 51 gboolean remember_pass; /**< Remember the password. */
52 52
53 char *protocol_id; /**< The ID of the protocol. */ 53 char *protocol_id; /**< The ID of the protocol. */
54 54
55 GaimConnection *gc; /**< The connection handle. */ 55 GaimConnection *gc; /**< The connection handle. */
56 56
57 GHashTable *settings; /**< Protocol-specific settings. */ 57 GHashTable *settings; /**< Protocol-specific settings. */
58 GHashTable *ui_settings; /**< UI-specific settings. */ 58 GHashTable *ui_settings; /**< UI-specific settings. */
59 59
60 char *ip; /**< The IP address for transfers. */ 60 char *ip; /**< The IP address for transfers. */
61 GaimProxyInfo *proxy_info; /**< Proxy information. */ 61 GaimProxyInfo *proxy_info; /**< Proxy information. This will be set */
62 62 /* to NULL when the account inherits */
63 GSList *permit; /**< Permit list. */ 63 /* proxy settings from global prefs. */
64 GSList *deny; /**< Deny list. */ 64
65 int perm_deny; /**< The permit/deny setting. */ 65 GSList *permit; /**< Permit list. */
66 GSList *deny; /**< Deny list. */
67 int perm_deny; /**< The permit/deny setting. */
66 }; 68 };
67 69
68 #ifdef __cplusplus 70 #ifdef __cplusplus
69 extern "C" { 71 extern "C" {
70 #endif 72 #endif