Mercurial > pidgin.yaz
annotate plugins/yay/yay.h @ 1563:393b23c8f494
[gaim-migrate @ 1573]
notify when people add you to their list
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Sun, 11 Mar 2001 00:38:37 +0000 |
parents | 12f16a852540 |
children | 2c66d386be90 |
rev | line source |
---|---|
1546 | 1 /* |
2 * libyay | |
3 * | |
4 * Copyright (C) 2001 Eric Warmenhoven <warmenhoven@yahoo.com> | |
5 * | |
6 * This program is free software; you can redistribute it and/or modify | |
7 * it under the terms of the GNU General Public License as published by | |
8 * the Free Software Foundation; either version 2 of the License, or | |
9 * (at your option) any later version. | |
10 * | |
11 * This program is distributed in the hope that it will be useful, | |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 * GNU General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU General Public License | |
17 * along with this program; if not, write to the Free Software | |
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
19 * | |
20 */ | |
21 | |
22 #ifndef _LIBYAY_H | |
23 #define _LIBYAY_H | |
24 | |
25 #include <glib.h> | |
26 #include <unistd.h> | |
27 #include <errno.h> | |
28 #include <stdarg.h> | |
29 #include <sys/types.h> | |
30 #include <fcntl.h> | |
31 #include <netdb.h> | |
32 #include <sys/socket.h> | |
33 #include <netinet/in.h> | |
34 | |
35 struct yahoo_session; | |
36 | |
37 #define YAHOO_AUTH_HOST "msg.edit.yahoo.com" | |
38 #define YAHOO_AUTH_PORT 80 | |
39 #define YAHOO_PAGER_HOST "cs.yahoo.com" | |
40 #define YAHOO_PAGER_PORT 5050 | |
41 #define YAHOO_DATA_HOST YAHOO_AUTH_HOST | |
42 #define YAHOO_DATA_PORT YAHOO_AUTH_PORT | |
43 | |
44 enum yahoo_status { | |
45 YAHOO_STATUS_AVAILABLE, | |
46 YAHOO_STATUS_BRB, | |
47 YAHOO_STATUS_BUSY, | |
48 YAHOO_STATUS_NOTATHOME, | |
49 YAHOO_STATUS_NOTATDESK, | |
50 YAHOO_STATUS_NOTINOFFICE, | |
51 YAHOO_STATUS_ONPHONE, | |
52 YAHOO_STATUS_ONVACATION, | |
53 YAHOO_STATUS_OUTTOLUNCH, | |
54 YAHOO_STATUS_STEPPEDOUT, | |
55 YAHOO_STATUS_INVISIBLE = 12, | |
56 YAHOO_STATUS_CUSTOM = 99, | |
57 YAHOO_STATUS_IDLE = 999 | |
58 }; | |
59 | |
60 struct yahoo_session *yahoo_new(); | |
61 int yahoo_connect(struct yahoo_session *session, const char *host, int port); | |
62 int yahoo_send_login(struct yahoo_session *session, const char *name, const char *password); | |
63 int yahoo_major_connect(struct yahoo_session *session, const char *host, int port); | |
64 int yahoo_finish_logon(struct yahoo_session *session, enum yahoo_status status); | |
65 int yahoo_logoff(struct yahoo_session *session); | |
66 int yahoo_disconnect(struct yahoo_session *session); | |
67 int yahoo_delete(struct yahoo_session *session); | |
68 | |
69 int yahoo_activate_id(struct yahoo_session *session, char *id); | |
70 int yahoo_deactivate_id(struct yahoo_session *session, char *id); | |
71 int yahoo_send_message(struct yahoo_session *session, const char *id, const char *user, const char *msg); | |
72 int yahoo_away(struct yahoo_session *session, enum yahoo_status stats, char *msg); | |
73 int yahoo_back(struct yahoo_session *session, enum yahoo_status stats, char *msg); | |
74 int yahoo_ping(struct yahoo_session *session); | |
75 | |
76 int yahoo_add_buddy(struct yahoo_session *session, const char *active_id, | |
77 const char *group, const char *buddy, const char *message); | |
78 int yahoo_remove_buddy(struct yahoo_session *session, const char *active_id, | |
79 const char *group, const char *buddy, const char *message); | |
80 | |
81 extern void (*yahoo_socket_notify)(struct yahoo_session *session, int socket, int type, gboolean status); | |
82 #define YAHOO_SOCKET_READ 1 | |
83 #define YAHOO_SOCKET_WRITE 2 | |
84 void yahoo_socket_handler(struct yahoo_session *session, int socket, int type); | |
85 | |
86 extern void (*yahoo_print)(struct yahoo_session *session, int level, const char *log); | |
87 #define YAHOO_LOG_DEBUG 4 | |
88 #define YAHOO_LOG_NOTICE 3 | |
89 #define YAHOO_LOG_WARNING 2 | |
90 #define YAHOO_LOG_ERROR 1 | |
91 #define YAHOO_LOG_CRITICAL 0 | |
92 | |
93 typedef int (*yahoo_callback)(struct yahoo_session *session, ...); | |
94 void yahoo_add_handler(struct yahoo_session *session, int type, yahoo_callback function); | |
95 #define YAHOO_HANDLE_DISCONNECT 0 | |
96 #define YAHOO_HANDLE_AUTHCONNECT 1 | |
97 #define YAHOO_HANDLE_BADPASSWORD 2 | |
98 #define YAHOO_HANDLE_LOGINCOOKIE 3 | |
99 #define YAHOO_HANDLE_MAINCONNECT 4 | |
100 #define YAHOO_HANDLE_ONLINE 5 | |
101 #define YAHOO_HANDLE_NEWMAIL 6 | |
102 #define YAHOO_HANDLE_MESSAGE 7 | |
1562
12f16a852540
[gaim-migrate @ 1572]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1546
diff
changeset
|
103 #define YAHOO_HANDLE_BOUNCE 8 |
12f16a852540
[gaim-migrate @ 1572]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1546
diff
changeset
|
104 #define YAHOO_HANDLE_STATUS 9 |
12f16a852540
[gaim-migrate @ 1572]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1546
diff
changeset
|
105 #define YAHOO_HANDLE_ACTIVATE 10 |
1563
393b23c8f494
[gaim-migrate @ 1573]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1562
diff
changeset
|
106 #define YAHOO_HANDLE_BUDDYADDED 11 |
393b23c8f494
[gaim-migrate @ 1573]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1562
diff
changeset
|
107 #define YAHOO_HANDLE_MAX 12 |
1546 | 108 |
109 struct callback { | |
110 yahoo_callback function; | |
111 void *data; | |
112 }; | |
113 | |
114 struct yahoo_group { | |
115 char *name; | |
116 char **buddies; | |
117 }; | |
118 | |
119 struct yahoo_session { | |
120 void *user_data; | |
121 struct callback callbacks[YAHOO_HANDLE_MAX]; | |
122 | |
123 char *name; | |
124 | |
125 char *cookie; | |
126 char *login_cookie; | |
127 GList *connlist; | |
128 | |
129 GList *groups; | |
130 GList *ignored; | |
131 | |
132 char **identities; | |
133 int mail; | |
134 char *login; | |
135 }; | |
136 | |
137 #endif |