Differences From Artifact [842e840000]:
- File src/http_transport.c — part of check-in [52943029e2] at 2018-07-22 18:58:07 on branch trunk — New options to the "fossil http" command: --in FILE, --out FILE, --ipaddr ADDRESS, and --nodelay. Use the --in, --out, and --inaddr options for subprocesses that handle HTTP requests via file I/O. This replaced the older and undocumented form of the "fossil http" command that accepted extra arguments. Use the --nodelay option to prevent lengthy backoffice processing. The use of --nodelay during "fossil ui" on Windows prevents annoying pauses on that platform. (user: drh size: 13247) [more...]
To Artifact [18a06326d0]:
- File src/http_transport.c — part of check-in [e882081f8d] at 2018-07-31 20:34:13 on branch fork-backoffice — Use the fork() system call (when available) to start backoffice, in an attempt to avoid unseemly delays in upstream. (user: drh size: 13237) [more...]
| ︙ | |||
268 269 270 271 272 273 274 | 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 | - + |
** it is time to being receiving a reply.
*/
void transport_flip(UrlData *pUrlData){
if( pUrlData->isFile ){
char *zCmd;
fclose(transport.pFile);
zCmd = mprintf("\"%s\" http --in \"%s\" --out \"%s\" --ipaddr 127.0.0.1"
|
| ︙ |