view libfaim/aim_logoff.c @ 581:c72e5ee07d0a

[gaim-migrate @ 591] more stuff, but i haven't tested any of it yet :-] committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Wed, 02 Aug 2000 05:15:57 +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;

}