libfaim/aim_logoff.c

Tue, 06 Jun 2000 09:55:30 +0000

author
Eric Warmenhoven <warmenhoven@yahoo.com>
date
Tue, 06 Jun 2000 09:55:30 +0000
changeset 338
21c93bc7ae83
parent 283
dbf3342692e9
permissions
-rw-r--r--

[gaim-migrate @ 348]
Whoa, all kinds of things happened here. The applet looks better. The
preferences dialog changes based on your compile-time options (oscar,
gnome). Whispering works again. libfaim got updated; it can almost do
RVOUS stuff, and hopefully soon can make requests too. The applet doesn't
need to have its sounds go through GNOME, although it still can. There
is code to facilitate SOCKS5 support (all that needs to be done is to
actually write the code to communicate with the proxy server).

/*
 * 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;

}

mercurial