2086
|
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
|
|
34 struct yahoo_conn {
|
|
35 int type;
|
|
36 int socket;
|
|
37 int magic_id;
|
|
38 gboolean connected;
|
|
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 #define YAHOO_CONN_TYPE_PROXY 4
|
|
46
|
|
47 #define HTTP_GOODSTRING1 "HTTP/1.0 200 Connection established"
|
|
48 #define HTTP_GOODSTRING2 "HTTP/1.1 200 Connection established"
|
|
49
|
|
50 char *yahoo_urlencode(const char *);
|
|
51 struct yahoo_conn *yahoo_new_conn(struct yahoo_session *, int, const char *, int);
|
|
52 struct yahoo_conn *yahoo_getconn_type(struct yahoo_session *, int);
|
|
53 struct yahoo_conn *yahoo_find_conn(struct yahoo_session *, int);
|
|
54 int yahoo_write(struct yahoo_session *, struct yahoo_conn *, void *, int);
|
|
55 int yahoo_write_cmd(struct yahoo_session *, struct yahoo_conn *, int, const char *, void *, guint);
|
|
56 void yahoo_close(struct yahoo_session *, struct yahoo_conn *);
|
|
57
|
|
58 #define YAHOO_SERVICE_LOGON 1
|
|
59 #define YAHOO_SERVICE_LOGOFF 2
|
|
60 #define YAHOO_SERVICE_ISAWAY 3
|
|
61 #define YAHOO_SERVICE_ISBACK 4
|
|
62 #define YAHOO_SERVICE_IDLE 5
|
|
63 #define YAHOO_SERVICE_MESSAGE 6
|
|
64 #define YAHOO_SERVICE_IDACT 7
|
|
65 #define YAHOO_SERVICE_IDDEACT 8
|
|
66 #define YAHOO_SERVICE_NEWMAIL 11
|
|
67 #define YAHOO_SERVICE_NEWPERSONALMAIL 14
|
|
68 #define YAHOO_SERVICE_NEWCONTACT 15
|
|
69 #define YAHOO_SERVICE_PING 18
|
|
70
|
|
71 #define YAHOO_MESSAGE_NORMAL 1
|
|
72 #define YAHOO_MESSAGE_BOUNCE 2
|
|
73 #define YAHOO_MESSAGE_OFFLINE 5
|
|
74 #define YAHOO_MESSAGE_SEND 1515563606
|
|
75
|
|
76 void yahoo_storeint(guchar *, guint);
|
|
77 int yahoo_makeint(guchar *);
|
|
78
|
|
79 struct yahoo_packet {
|
|
80 char version[8];
|
|
81 guchar len[4];
|
|
82 guchar service[4];
|
|
83
|
|
84 guchar conn_id[4];
|
|
85 guchar magic_id[4];
|
|
86 guchar address[4];
|
|
87 guchar msgtype[4];
|
|
88
|
|
89 char nick1[36];
|
|
90 char nick2[36];
|
|
91
|
|
92 char content[1024];
|
|
93 };
|
|
94
|
|
95 #endif
|