view libfaim/aim_logoff.c @ 1151:428372cc1e39

[gaim-migrate @ 1161] Thanks to Moses Lei for this patch. it's something that should have been added long ago. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 28 Nov 2000 00:53:27 +0000
parents 9d258a0aa560
children
line wrap: on
line source

/*
 * aim_logoff.c
 *
 *
 */

#include <faim/aim.h> 

/* 
 * aim_logoff()
 * 
 * Closes -ALL- open connections.
 *
 */
int aim_logoff(struct aim_session_t *sess)
{
  aim_connrst(sess);  /* in case we want to connect again */

  return 0;

}