Mercurial > pidgin.yaz
annotate libfaim/aim_logoff.c @ 1348:6b7555cba359
[gaim-migrate @ 1358]
Makes the icq plugin compile on FreeBSD. Other platforms as well?
committer: Tailor Script <tailor@pidgin.im>
author | Rob Flynn <gaim@robflynn.com> |
---|---|
date | Thu, 21 Dec 2000 18:54:16 +0000 |
parents | 9d258a0aa560 |
children |
rev | line source |
---|---|
2 | 1 /* |
2 * aim_logoff.c | |
3 * | |
4 * | |
5 */ | |
6 | |
283
0f14e6d8a51b
[gaim-migrate @ 293]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
237
diff
changeset
|
7 #include <faim/aim.h> |
2 | 8 |
9 /* | |
10 * aim_logoff() | |
11 * | |
12 * Closes -ALL- open connections. | |
13 * | |
14 */ | |
237 | 15 int aim_logoff(struct aim_session_t *sess) |
2 | 16 { |
237 | 17 aim_connrst(sess); /* in case we want to connect again */ |
2 | 18 |
19 return 0; | |
20 | |
21 } |