Changeset 1121
- Timestamp:
- 09/06/08 17:06:20 (3 months ago)
- Files:
-
- trunk/mango/net/http/server/HttpResponse.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/mango/net/http/server/HttpResponse.d
r1109 r1121 260 260 **********************************************************************/ 261 261 262 void flush ( )262 void flush (bool fully = true) 263 263 { 264 264 commit (output); … … 270 270 Stdout.put ("###############").newline(); 271 271 } 272 output.flush; 272 273 if (fully) 274 output.flush; 273 275 } 274 276
