Mercurial > pidgin.yaz
view src/protocols/oscar/stats.c @ 7865:1d2e9482e195
[gaim-migrate @ 8519]
" Here's a patch that impliments system messages, and
tries to improve the login errors a little, including
handling one more of them.
Notice that for system messages, we pass NULL instead
of gc to gaim_notify_info, because often we get
disconnected right after receiving a system message. To
see it in action, change the protocol version from
0x000b to 0x0900" --Tim Ringenbach (marv_sf)
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Sun, 14 Dec 2003 17:07:16 +0000 |
parents | 0b64f386a7b8 |
children |
line wrap: on
line source
/* * Family 0x000b - Statistics. * */ #define FAIM_INTERNAL #include <aim.h> static int reportinterval(aim_session_t *sess, aim_module_t *mod, aim_frame_t *rx, aim_modsnac_t *snac, aim_bstream_t *bs) { int ret = 0; aim_rxcallback_t userfunc; fu16_t interval; interval = aimbs_get16(bs); if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype))) ret = userfunc(sess, rx, interval); return ret; } static int snachandler(aim_session_t *sess, aim_module_t *mod, aim_frame_t *rx, aim_modsnac_t *snac, aim_bstream_t *bs) { if (snac->subtype == 0x0002) return reportinterval(sess, mod, rx, snac, bs); return 0; } faim_internal int stats_modfirst(aim_session_t *sess, aim_module_t *mod) { mod->family = 0x000b; mod->version = 0x0001; mod->toolid = 0x0104; mod->toolversion = 0x0001; mod->flags = 0; strncpy(mod->name, "stats", sizeof(mod->name)); mod->snachandler = snachandler; return 0; }