Differences From Artifact [488f99c0c0]:
- File src/http.c — part of check-in [6842999f82] at 2009-10-05 14:29:51 on branch trunk — Sync client uses only HTTP/1.0 in order to avoid having to support chunked encoding. (user: drh size: 7481)
To Artifact [ae110e8e86]:
- File src/http.c — part of check-in [21a2a18145] at 2009-10-11 21:31:45 on branch trunk — Panic on bad server responses. Ticket [bfb8427cdd]. (user: dmitry size: 7508)
| ︙ | ︙ | |||
233 234 235 236 237 238 239 | return; /* ** Jump to here if an error is seen. */ write_err: transport_close(); | | | 233 234 235 236 237 238 239 240 241 |
return;
/*
** Jump to here if an error is seen.
*/
write_err:
transport_close();
fossil_panic("bad server response");
}
|