view libfaim/aim_logoff.c @ 1009:d496fe2614a6

[gaim-migrate @ 1019] command-line options for the app. not for the applet because most of the time you don't run it from the command line anyway. thanks bmiller committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Fri, 20 Oct 2000 00:35:30 +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;

}