comparison plugins/icq/gaim_icq.c @ 1772:896432d66303

[gaim-migrate @ 1782] remove OPT_USR_KEEPALIVE; add OPT_PROTO_UNIQUE_CHATNAME for Jabber. other things that need to be implemented still. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Mon, 30 Apr 2001 01:58:24 +0000
parents a247305b835f
children a02584b98823
comparison
equal deleted inserted replaced
1771:213607e89598 1772:896432d66303
97 static void icq_online(ICQLINK *link) { 97 static void icq_online(ICQLINK *link) {
98 struct gaim_connection *gc = find_gaim_conn_by_icq_link(link); 98 struct gaim_connection *gc = find_gaim_conn_by_icq_link(link);
99 struct icq_data *id = (struct icq_data *)gc->proto_data; 99 struct icq_data *id = (struct icq_data *)gc->proto_data;
100 debug_printf("%s is now online.\n", gc->username); 100 debug_printf("%s is now online.\n", gc->username);
101 account_online(gc); 101 account_online(gc);
102 gc->options |= OPT_USR_KEEPALV; 102 /*gc->options |= OPT_USR_KEEPALV; this is always-on now */
103 serv_finish_login(gc); 103 serv_finish_login(gc);
104 104
105 icq_ChangeStatus(id->link, STATUS_ONLINE); 105 icq_ChangeStatus(id->link, STATUS_ONLINE);
106 } 106 }
107 107