view libfaim/aim_logoff.c @ 1120:124e9f0b9af5

[gaim-migrate @ 1130] Need to use AC_TRY_COMPILE instead of AC_CHECK_HEADER to get CFLAGS for X headers in case if they are not in a good place. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Wed, 22 Nov 2000 06:25:20 +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;

}