| 227 |
227 |
| 228 request = g_strdup_printf("POST /%s HTTP/1.1\r\n" |
228 request = g_strdup_printf("POST /%s HTTP/1.1\r\n" |
| 229 "User-Agent: Mozilla/4.0 (compatible; MSIE 5.5)\r\n" |
229 "User-Agent: Mozilla/4.0 (compatible; MSIE 5.5)\r\n" |
| 230 "Cookie: T=%s; Y=%s\r\n" |
230 "Cookie: T=%s; Y=%s\r\n" |
| 231 "Host: %s\r\n" |
231 "Host: %s\r\n" |
| 232 "Content-Length: %i\r\n" |
232 "Content-Length: %" G_GSIZE_FORMAT "\r\n" |
| 233 "Cache-Control: no-cache\r\n\r\n" |
233 "Cache-Control: no-cache\r\n\r\n" |
| 234 "%s", |
234 "%s", |
| 235 webpage, yd->cookie_t,yd->cookie_y, webaddress, |
235 webpage, yd->cookie_t,yd->cookie_y, webaddress, |
| 236 strlen(content), content); |
236 strlen(content), content); |
| 237 |
237 |