Mercurial > pidgin.yaz
view libfaim/aim_logoff.c @ 326:1f4dad07307c
[gaim-migrate @ 336]
Well,
Icons are either working or they're now horribly broken.
committer: Tailor Script <tailor@pidgin.im>
author | Rob Flynn <gaim@robflynn.com> |
---|---|
date | Fri, 02 Jun 2000 21:50:01 +0000 |
parents | 0f14e6d8a51b |
children | 9d258a0aa560 |
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) { int i = AIM_CONN_MAX-1; while (i > -1) { if (sess->conns[i].fd>-1) aim_conn_close(&(sess->conns[i])); i--; } aim_connrst(sess); /* in case we want to connect again */ return 0; }