comparison src/server.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 d8cd876e613e
children a4622f1fb5a1
comparison
equal deleted inserted replaced
6620:7230e5920911 6621:42fdf16f1dad
20 * along with this program; if not, write to the Free Software 20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */ 22 */
23 #ifndef _GAIM_SERVER_H_ 23 #ifndef _GAIM_SERVER_H_
24 #define _GAIM_SERVER_H_ 24 #define _GAIM_SERVER_H_
25
26 #define WFLAG_SEND 0x01
27 #define WFLAG_RECV 0x02
28 #define WFLAG_AUTO 0x04
29 #define WFLAG_WHISPER 0x08
30 #define WFLAG_FILERECV 0x10
31 #define WFLAG_SYSTEM 0x20
32 #define WFLAG_NICK 0x40
33 #define WFLAG_NOLOG 0x80
34 #define WFLAG_COLORIZE 0x100
35 25
36 #define IM_FLAG_AWAY 0x01 26 #define IM_FLAG_AWAY 0x01
37 #define IM_FLAG_CHECKBOX 0x02 27 #define IM_FLAG_CHECKBOX 0x02
38 #define IM_FLAG_GAIMUSER 0x04 28 #define IM_FLAG_GAIMUSER 0x04
39 29