Fri, 27 Apr 2001 22:21:53 +0000
[gaim-migrate @ 1773]
la la la
| 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 | ||
|
1565
95f2c94c708d
[gaim-migrate @ 1575]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1563
diff
changeset
|
37 | #define YAHOO_PROXY_NONE 0 |
|
95f2c94c708d
[gaim-migrate @ 1575]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1563
diff
changeset
|
38 | #define YAHOO_PROXY_HTTP 1 |
|
95f2c94c708d
[gaim-migrate @ 1575]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1563
diff
changeset
|
39 | |
| 1546 | 40 | #define YAHOO_AUTH_HOST "msg.edit.yahoo.com" |
| 41 | #define YAHOO_AUTH_PORT 80 | |
| 42 | #define YAHOO_PAGER_HOST "cs.yahoo.com" | |
| 43 | #define YAHOO_PAGER_PORT 5050 | |
| 44 | #define YAHOO_DATA_HOST YAHOO_AUTH_HOST | |
| 45 | #define YAHOO_DATA_PORT YAHOO_AUTH_PORT | |
| 46 | ||
| 47 | enum yahoo_status { | |
| 48 | YAHOO_STATUS_AVAILABLE, | |
| 49 | YAHOO_STATUS_BRB, | |
| 50 | YAHOO_STATUS_BUSY, | |
| 51 | YAHOO_STATUS_NOTATHOME, | |
| 52 | YAHOO_STATUS_NOTATDESK, | |
| 53 | YAHOO_STATUS_NOTINOFFICE, | |
| 54 | YAHOO_STATUS_ONPHONE, | |
| 55 | YAHOO_STATUS_ONVACATION, | |
| 56 | YAHOO_STATUS_OUTTOLUNCH, | |
| 57 | YAHOO_STATUS_STEPPEDOUT, | |
| 58 | YAHOO_STATUS_INVISIBLE = 12, | |
| 59 | YAHOO_STATUS_CUSTOM = 99, | |
| 60 | YAHOO_STATUS_IDLE = 999 | |
| 61 | }; | |
| 62 | ||
| 63 | struct yahoo_session *yahoo_new(); | |
|
1565
95f2c94c708d
[gaim-migrate @ 1575]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1563
diff
changeset
|
64 | void yahoo_set_proxy(struct yahoo_session *session, int proxy_type, char *proxy_host, int proxy_port); |
| 1546 | 65 | int yahoo_connect(struct yahoo_session *session, const char *host, int port); |
| 66 | int yahoo_send_login(struct yahoo_session *session, const char *name, const char *password); | |
| 67 | int yahoo_major_connect(struct yahoo_session *session, const char *host, int port); | |
| 68 | int yahoo_finish_logon(struct yahoo_session *session, enum yahoo_status status); | |
| 69 | int yahoo_logoff(struct yahoo_session *session); | |
| 70 | int yahoo_disconnect(struct yahoo_session *session); | |
| 71 | int yahoo_delete(struct yahoo_session *session); | |
| 72 | ||
| 73 | int yahoo_activate_id(struct yahoo_session *session, char *id); | |
| 74 | int yahoo_deactivate_id(struct yahoo_session *session, char *id); | |
| 75 | int yahoo_send_message(struct yahoo_session *session, const char *id, const char *user, const char *msg); | |
| 76 | int yahoo_away(struct yahoo_session *session, enum yahoo_status stats, char *msg); | |
| 77 | int yahoo_back(struct yahoo_session *session, enum yahoo_status stats, char *msg); | |
| 78 | int yahoo_ping(struct yahoo_session *session); | |
| 79 | ||
| 80 | int yahoo_add_buddy(struct yahoo_session *session, const char *active_id, | |
| 81 | const char *group, const char *buddy, const char *message); | |
| 82 | int yahoo_remove_buddy(struct yahoo_session *session, const char *active_id, | |
| 83 | const char *group, const char *buddy, const char *message); | |
| 84 | ||
| 85 | extern void (*yahoo_socket_notify)(struct yahoo_session *session, int socket, int type, gboolean status); | |
| 86 | #define YAHOO_SOCKET_READ 1 | |
| 87 | #define YAHOO_SOCKET_WRITE 2 | |
| 88 | void yahoo_socket_handler(struct yahoo_session *session, int socket, int type); | |
| 89 | ||
| 90 | extern void (*yahoo_print)(struct yahoo_session *session, int level, const char *log); | |
| 91 | #define YAHOO_LOG_DEBUG 4 | |
| 92 | #define YAHOO_LOG_NOTICE 3 | |
| 93 | #define YAHOO_LOG_WARNING 2 | |
| 94 | #define YAHOO_LOG_ERROR 1 | |
| 95 | #define YAHOO_LOG_CRITICAL 0 | |
| 96 | ||
| 97 | typedef int (*yahoo_callback)(struct yahoo_session *session, ...); | |
| 98 | void yahoo_add_handler(struct yahoo_session *session, int type, yahoo_callback function); | |
| 99 | #define YAHOO_HANDLE_DISCONNECT 0 | |
| 100 | #define YAHOO_HANDLE_AUTHCONNECT 1 | |
| 101 | #define YAHOO_HANDLE_BADPASSWORD 2 | |
| 102 | #define YAHOO_HANDLE_LOGINCOOKIE 3 | |
| 103 | #define YAHOO_HANDLE_MAINCONNECT 4 | |
| 104 | #define YAHOO_HANDLE_ONLINE 5 | |
| 105 | #define YAHOO_HANDLE_NEWMAIL 6 | |
| 106 | #define YAHOO_HANDLE_MESSAGE 7 | |
|
1562
18522055495a
[gaim-migrate @ 1572]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1546
diff
changeset
|
107 | #define YAHOO_HANDLE_BOUNCE 8 |
|
18522055495a
[gaim-migrate @ 1572]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1546
diff
changeset
|
108 | #define YAHOO_HANDLE_STATUS 9 |
|
18522055495a
[gaim-migrate @ 1572]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1546
diff
changeset
|
109 | #define YAHOO_HANDLE_ACTIVATE 10 |
|
1563
34b980c4b771
[gaim-migrate @ 1573]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1562
diff
changeset
|
110 | #define YAHOO_HANDLE_BUDDYADDED 11 |
|
34b980c4b771
[gaim-migrate @ 1573]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1562
diff
changeset
|
111 | #define YAHOO_HANDLE_MAX 12 |
| 1546 | 112 | |
| 113 | struct callback { | |
| 114 | yahoo_callback function; | |
| 115 | void *data; | |
| 116 | }; | |
| 117 | ||
| 118 | struct yahoo_group { | |
| 119 | char *name; | |
| 120 | char **buddies; | |
| 121 | }; | |
| 122 | ||
| 123 | struct yahoo_session { | |
| 124 | void *user_data; | |
| 125 | struct callback callbacks[YAHOO_HANDLE_MAX]; | |
| 126 | ||
|
1565
95f2c94c708d
[gaim-migrate @ 1575]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1563
diff
changeset
|
127 | int proxy_type; |
|
95f2c94c708d
[gaim-migrate @ 1575]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1563
diff
changeset
|
128 | char *proxy_host; |
|
95f2c94c708d
[gaim-migrate @ 1575]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1563
diff
changeset
|
129 | int proxy_port; |
|
95f2c94c708d
[gaim-migrate @ 1575]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1563
diff
changeset
|
130 | |
| 1546 | 131 | char *name; |
| 132 | ||
| 133 | char *cookie; | |
| 134 | char *login_cookie; | |
| 135 | GList *connlist; | |
| 136 | ||
| 137 | GList *groups; | |
| 138 | GList *ignored; | |
| 139 | ||
| 140 | char **identities; | |
| 141 | int mail; | |
| 142 | char *login; | |
| 143 | }; | |
| 144 | ||
| 145 | #endif |