comparison libpurple/protocols/irc/irc.h @ 32784:665388a0f573

Remove periodic WHO on IRC. I believe I have left enough functionality here that a misguided libpurple client can continue to trigger WHO from its own UI. References #11089, #14602 Fixes #14955
author Ethan Blanton <elb@pidgin.im>
date Thu, 03 May 2012 00:09:14 +0000
parents 54a700cedb38
children fa666e7f747e
comparison
equal deleted inserted replaced
32783:6da4f286898c 32784:665388a0f573
1 /** 1 /**
2 * @file irc.h 2 * @file irc.h
3 * 3 *
4 * purple 4 * purple
5 * 5 *
6 * Copyright (C) 2003, Ethan Blanton <eblanton@cs.purdue.edu> 6 * Copyright (C) 2003, 2012 Ethan Blanton <elb@pidgin.im>
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
10 * the Free Software Foundation; either version 2 of the License, or 10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version. 11 * (at your option) any later version.
53 GHashTable *msgs; 53 GHashTable *msgs;
54 GHashTable *cmds; 54 GHashTable *cmds;
55 char *server; 55 char *server;
56 int fd; 56 int fd;
57 guint timer; 57 guint timer;
58 guint who_channel_timer;
59 GHashTable *buddies; 58 GHashTable *buddies;
60 59
61 gboolean ison_outstanding; 60 gboolean ison_outstanding;
62 GList *buddies_outstanding; 61 GList *buddies_outstanding;
63 62