Wed, 01 Dec 2004 02:30:47 +0000
[gaim-migrate @ 11454]
Several MSN memory leaks identified and fixed by Miah Gregory and Felipe
Contreras, plus my own fix for bug 1075347.
As normal, thank them for fixes, blame me for breakages.
Did I mention the new MSN icon? It rocks!
| 7288 | 1 | /** |
| 2 | * @file httpmethod.h HTTP connection method | |
| 3 | * | |
| 4 | * gaim | |
| 5 | * | |
|
9198
e8eb6d5eb9eb
[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 |
|
e8eb6d5eb9eb
[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 |
|
e8eb6d5eb9eb
[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
f8dab42adeaf
[gaim-migrate @ 9942]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
8475
diff
changeset
|
34 | char *old_gateway_host; |
|
f8dab42adeaf
[gaim-migrate @ 9942]
Felipe Contreras <felipe.contreras@gmail.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
eb6f1096ffa6
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
42 | gboolean dirty; |
| 7288 | 43 | |
| 44 | GList *queue; | |
| 45 | }; | |
| 46 | ||
| 47 | /** | |
|
8298
eb6f1096ffa6
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
48 | * Initializes the HTTP data for a session. |
|
eb6f1096ffa6
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
49 | * |
|
eb6f1096ffa6
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
50 | * @param session The session. |
|
eb6f1096ffa6
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
51 | */ |
|
eb6f1096ffa6
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
52 | void msn_http_session_init(MsnSession *session); |
|
eb6f1096ffa6
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
53 | |
|
eb6f1096ffa6
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
54 | /** |
|
eb6f1096ffa6
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
55 | * Uninitializes the HTTP data for a session. |
|
eb6f1096ffa6
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
56 | * |
|
eb6f1096ffa6
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
57 | * @param session The session. |
|
eb6f1096ffa6
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
58 | */ |
|
eb6f1096ffa6
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
59 | void msn_http_session_uninit(MsnSession *session); |
|
eb6f1096ffa6
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
60 | |
|
eb6f1096ffa6
[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_ */ |