Fri, 09 Mar 2001 12:10:56 +0000
[gaim-migrate @ 1562]
fix for stupidity. not sure if add/remove buddies works yet (code is there but it's very untested)
| 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_INTERNAL_H | |
| 23 | #define _LIBYAY_INTERNAL_H | |
| 24 | ||
| 25 | #include "yay.h" | |
| 26 | ||
| 27 | #define YAHOO_CONN_STATUS_RESOLVERR 0x0040 | |
| 28 | #define YAHOO_CONN_STATUS_INPROGRESS 0x0100 | |
| 29 | ||
| 30 | #define YAHOO_USER_AGENT "Mozilla/4.6 (libyay/1.0)" | |
| 31 | ||
| 32 | #define YAHOO_PRINT(x, y, z) if (yahoo_print) (*yahoo_print)(x, y, z) | |
| 33 | #define CALLBACK(x, y, ...) if (x->callbacks[y].function) (*x->callbacks[y].function)(x, ##__VA_ARGS__) | |
| 34 | ||
| 35 | struct yahoo_conn { | |
| 36 | int type; | |
| 37 | int socket; | |
| 38 | int magic_id; | |
| 39 | char *txqueue; | |
| 40 | }; | |
| 41 | ||
| 42 | #define YAHOO_CONN_TYPE_AUTH 1 | |
| 43 | #define YAHOO_CONN_TYPE_MAIN 2 | |
| 44 | #define YAHOO_CONN_TYPE_DUMB 3 | |
| 45 | ||
| 46 | char *yahoo_urlencode(const char *); | |
| 47 | struct yahoo_conn *yahoo_new_conn(struct yahoo_session *, int, const char *, int); | |
| 48 | struct yahoo_conn *yahoo_getconn_type(struct yahoo_session *, int); | |
| 49 | struct yahoo_conn *yahoo_find_conn(struct yahoo_session *, int); | |
| 50 | int yahoo_write(struct yahoo_session *, struct yahoo_conn *, void *, int); | |
| 51 | int yahoo_write_cmd(struct yahoo_session *, struct yahoo_conn *, int, const char *, void *, guint); | |
| 52 | void yahoo_close(struct yahoo_session *, struct yahoo_conn *); | |
| 53 | ||
| 54 | #define YAHOO_SERVICE_LOGON 1 | |
| 55 | #define YAHOO_SERVICE_LOGOFF 2 | |
| 56 | #define YAHOO_SERVICE_ISAWAY 3 | |
| 57 | #define YAHOO_SERVICE_ISBACK 4 | |
| 58 | #define YAHOO_SERVICE_IDLE 5 | |
| 59 | #define YAHOO_SERVICE_MESSAGE 6 | |
| 60 | #define YAHOO_SERVICE_IDACT 7 | |
| 61 | #define YAHOO_SERVICE_IDDEACT 8 | |
| 62 | #define YAHOO_SERVICE_NEWMAIL 11 | |
| 63 | #define YAHOO_SERVICE_NEWPERSONALMAIL 14 | |
| 64 | #define YAHOO_SERVICE_PING 18 | |
| 65 | ||
| 66 | #define YAHOO_MESSAGE_NORMAL 1 | |
| 67 | ||
|
1552
20713b652219
[gaim-migrate @ 1562]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1546
diff
changeset
|
68 | void yahoo_storeint(guchar *, guint); |
|
20713b652219
[gaim-migrate @ 1562]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1546
diff
changeset
|
69 | int yahoo_makeint(guchar *); |
| 1546 | 70 | |
| 71 | struct yahoo_packet { | |
| 72 | char version[8]; | |
| 73 | guchar len[4]; | |
| 74 | guchar service[4]; | |
| 75 | ||
| 76 | guchar conn_id[4]; | |
| 77 | guchar magic_id[4]; | |
| 78 | guchar address[4]; | |
| 79 | guchar msgtype[4]; | |
| 80 | ||
| 81 | char nick1[36]; | |
| 82 | char nick2[36]; | |
| 83 | ||
| 84 | char content[1024]; | |
| 85 | }; | |
| 86 | ||
| 87 | #endif |