view libfaim/aim_logoff.c @ 731:3e1e809b968b

[gaim-migrate @ 741] I use public toilets and I piss on the seat I walk around in the summertime saying How 'bout this heat! I drive really slow in the ultra-fast lane while people behind me are going insane Sometimes i park in the handicapped spaces while handicapped people make handicapped faces i'm an asshole committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Mon, 21 Aug 2000 18:52:59 +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;

}