Mercurial > pidgin
view libfaim/aim_logoff.c @ 318:35796808896a
[gaim-migrate @ 328]
This is the way it's *SUPPOSED* to be done.
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Fri, 02 Jun 2000 18:59:27 +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; }