Changeset 1121

Show
Ignore:
Timestamp:
09/06/08 17:06:20 (3 months ago)
Author:
kris
Message:

added support for pipelined responses

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/mango/net/http/server/HttpResponse.d

    r1109 r1121  
    260260        **********************************************************************/ 
    261261 
    262         void flush (
     262        void flush (bool fully = true
    263263        { 
    264264                commit (output); 
     
    270270                        Stdout.put ("###############").newline(); 
    271271                        } 
    272                output.flush; 
     272 
     273                if (fully) 
     274                    output.flush; 
    273275        } 
    274276