Mercurial > pidgin
annotate src/protocols/msn/httpmethod.h @ 9600:b7d851a6a098
[gaim-migrate @ 10443]
removed gaimrc.c
committer: Tailor Script <tailor@pidgin.im>
author | Herman Bloggs <hermanator12002@yahoo.com> |
---|---|
date | Mon, 26 Jul 2004 21:43:33 +0000 |
parents | ab6636c5a136 |
children |
rev | line source |
---|---|
7288 | 1 /** |
2 * @file httpmethod.h HTTP connection method | |
3 * | |
4 * gaim | |
5 * | |
9198
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9158
diff
changeset
|
6 * Gaim is the legal property of its developers, whose names are too numerous |
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9158
diff
changeset
|
7 * to list here. Please refer to the COPYRIGHT file distributed with this |
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9158
diff
changeset
|
8 * source distribution. |
7288 | 9 * |
10 * This program is free software; you can redistribute it and/or modify | |
11 * it under the terms of the GNU General Public License as published by | |
12 * the Free Software Foundation; either version 2 of the License, or | |
13 * (at your option) any later version. | |
14 * | |
15 * This program is distributed in the hope that it will be useful, | |
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 * GNU General Public License for more details. | |
19 * | |
20 * You should have received a copy of the GNU General Public License | |
21 * along with this program; if not, write to the Free Software | |
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
23 */ | |
24 #ifndef _MSN_HTTP_METHOD_H_ | |
25 #define _MSN_HTTP_METHOD_H_ | |
26 | |
27 typedef struct _MsnHttpMethodData MsnHttpMethodData; | |
28 | |
29 #include "servconn.h" | |
30 | |
31 struct _MsnHttpMethodData | |
32 { | |
33 char *session_id; | |
9158
c30d81b4dd22
[gaim-migrate @ 9942]
Christian Hammond <chipx86@chipx86.com>
parents:
8475
diff
changeset
|
34 char *old_gateway_host; |
c30d81b4dd22
[gaim-migrate @ 9942]
Christian Hammond <chipx86@chipx86.com>
parents:
8475
diff
changeset
|
35 char *gateway_host; |
7288 | 36 const char *server_type; |
37 | |
38 int timer; | |
39 | |
40 gboolean virgin; | |
41 gboolean waiting_response; | |
8298
c719f9a181d4
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
42 gboolean dirty; |
7288 | 43 |
44 GList *queue; | |
45 }; | |
46 | |
47 /** | |
8298
c719f9a181d4
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
48 * Initializes the HTTP data for a session. |
c719f9a181d4
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
49 * |
c719f9a181d4
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
50 * @param session The session. |
c719f9a181d4
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
51 */ |
c719f9a181d4
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
52 void msn_http_session_init(MsnSession *session); |
c719f9a181d4
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
53 |
c719f9a181d4
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
54 /** |
c719f9a181d4
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
55 * Uninitializes the HTTP data for a session. |
c719f9a181d4
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
56 * |
c719f9a181d4
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
57 * @param session The session. |
c719f9a181d4
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
58 */ |
c719f9a181d4
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
59 void msn_http_session_uninit(MsnSession *session); |
c719f9a181d4
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
60 |
c719f9a181d4
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
61 /** |
7288 | 62 * Writes data to the server using the HTTP connection method. |
63 * | |
64 * @param servconn The server connection. | |
65 * @param buf The data to write. | |
66 * @param size The size of the data to write. | |
67 * @param server_type The optional server type. | |
68 * | |
69 * @return The number of bytes written. | |
70 */ | |
71 size_t msn_http_servconn_write(MsnServConn *servconn, const char *buf, | |
72 size_t size, const char *server_type); | |
73 | |
74 /** | |
75 * Polls the server for data. | |
76 * | |
77 * @param servconn The server connection. | |
78 */ | |
79 void msn_http_servconn_poll(MsnServConn *servconn); | |
80 | |
81 /** | |
82 * Processes an incoming message and returns a string the rest of MSN | |
83 * can deal with. | |
84 * | |
85 * @param servconn The server connection. | |
86 * @param buf The incoming buffer. | |
87 * @param size The incoming size. | |
88 * @param ret_buf The returned buffer. | |
89 * @param ret_len The returned length. | |
90 * @param error TRUE if there was an HTTP error. | |
91 * | |
92 * @return TRUE if the returned buffer is ready to be processed. | |
93 * FALSE otherwise. | |
94 */ | |
95 gboolean msn_http_servconn_parse_data(MsnServConn *servconn, | |
96 const char *buf, size_t size, | |
97 char **ret_buf, size_t *ret_size, | |
98 gboolean *error); | |
99 | |
100 #endif /* _MSN_HTTP_METHOD_H_ */ |