view libfaim/stats.c @ 1771:213607e89598

[gaim-migrate @ 1781] plug mem leak. don't show evil level if it decreased. mid's utf8 patch for jabber. my girlfriend got an accounting calculator today, you know, with the paper and the printing and things. it's kinda loud. she's really happy about having it. she had bought a different one yesterday but it didn't work so we returned it today. we also went to Albertson's and bought groceries. we bought 72 cans of soda for $15. That's 20 cents per soda. Not bad. we also bought a cow; i'm going to cook it tonight. ben&jerry's ice cream is good. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Mon, 30 Apr 2001 01:25:30 +0000
parents 3fe5799b7823
children 109cacf1ff97
line wrap: on
line source


#define FAIM_INTERNAL
#include <aim.h>

static int reportinterval(struct aim_session_t *sess, aim_module_t *mod, struct command_rx_struct *rx, aim_modsnac_t *snac, unsigned char *data, int datalen)
{
  unsigned short interval;
  rxcallback_t userfunc;

  interval = aimutil_get16(data);

  if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype)))
    return userfunc(sess, rx, interval);

  return 0;
}

static int snachandler(struct aim_session_t *sess, aim_module_t *mod, struct command_rx_struct *rx, aim_modsnac_t *snac, unsigned char *data, int datalen)
{

  if (snac->subtype == 0x0002)
    return reportinterval(sess, mod, rx, snac, data, datalen);

  return 0;
}

faim_internal int stats_modfirst(struct aim_session_t *sess, aim_module_t *mod)
{

  mod->family = 0x000b;
  mod->version = 0x0000;
  mod->flags = 0;
  strncpy(mod->name, "stats", sizeof(mod->name));
  mod->snachandler = snachandler;

  return 0;
}