--- libwww/Library/src/HTReqMan.c 1996/11/30 23:31:49 2.61 +++ libwww/Library/src/HTReqMan.c 1996/12/03 14:49:11 2.62 @@ -3,7 +3,7 @@ ** ** (c) COPYRIGHT MIT 1995. ** Please first read the full copyright statement in the file COPYRIGH. -** @(#) $Id: HTReqMan.c,v 2.61 1996/11/30 23:31:49 frystyk Exp $ +** @(#) $Id: HTReqMan.c,v 2.62 1996/12/03 14:49:11 frystyk Exp $ ** ** Authors ** TBL Tim Berners-Lee timbl@w3.org @@ -230,6 +230,23 @@ PUBLIC BOOL HTRequest_internal (HTReques } /* +** Should we flush immediately? +*/ +PUBLIC BOOL HTRequest_setFlush (HTRequest * me, BOOL mode) +{ + if (me) { + me->flush = mode; + return YES; + } + return NO; +} + +PUBLIC BOOL HTRequest_flush (HTRequest * me) +{ + return (me ? me->flush : NO); +} + +/* ** Date/time stamp when then request was issued ** This is normally set when generating the request headers. */