Mercurial > pidgin.yaz
annotate libfaim/aim_logoff.c @ 1009:d496fe2614a6
[gaim-migrate @ 1019]
command-line options for the app. not for the applet because most of the time you don't run it from the command line anyway. thanks bmiller
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Fri, 20 Oct 2000 00:35:30 +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 } |