comparison libpurple/protocols/jabber/iq.c @ 26951:10c91922bc1e

Support pushed notifications about XEP-0191 Blocks/Unblocks. Closes #8045. Recompiling jabberd2 from scratch magically made the pushes work, so I was able to test this and it works, except for causing a crash in jabberd2 that Mark already fixed. :)
author Paul Aurich <paul@darkrain42.org>
date Tue, 26 May 2009 23:44:55 +0000
parents 92565c8e1e3a
children add3989f682e
comparison
equal deleted inserted replaced
26950:d9f2a7f18759 26951:10c91922bc1e
493 jabber_iq_version_parse); 493 jabber_iq_version_parse);
494 #ifdef USE_VV 494 #ifdef USE_VV
495 jabber_iq_register_handler("session", "http://www.google.com/session", 495 jabber_iq_register_handler("session", "http://www.google.com/session",
496 jabber_google_session_parse); 496 jabber_google_session_parse);
497 #endif 497 #endif
498 jabber_iq_register_handler("block", "urn:xmpp:blocking", jabber_blocklist_parse_push);
499 jabber_iq_register_handler("unblock", "urn:xmpp:blocking", jabber_blocklist_parse_push);
498 jabber_iq_register_handler("time", "urn:xmpp:time", jabber_iq_time_parse); 500 jabber_iq_register_handler("time", "urn:xmpp:time", jabber_iq_time_parse);
499 501
500 } 502 }
501 503
502 void jabber_iq_uninit(void) 504 void jabber_iq_uninit(void)