X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2FObj%2Ftransports.phh;h=3b6e79c9b36a305a39ab00296f3982c595ab7e73;hb=b41e2233431a8862b741c7eb4c998c1a47263ed7;hp=32befba85c37acb9d058828beb1874bc383c0ce8;hpb=fc3be176768aa610fb887f8de1b3020c14f3a78b;p=brisk.git diff --git a/web/Obj/transports.phh b/web/Obj/transports.phh index 32befba..3b6e79c 100644 --- a/web/Obj/transports.phh +++ b/web/Obj/transports.phh @@ -70,6 +70,10 @@ class Transport_template { function chunk($step, $cont) { } + + function is_chunked() + { + } } class Transport_websocket { @@ -207,6 +211,11 @@ class Transport_xhr { { return ("@BEGIN@".$cont."@END@"); } + + function is_chunked() + { + return TRUE; + } } class Transport_iframe { @@ -275,6 +284,11 @@ push(null);\n// -->\n", $step); push(\"%s\");\n// -->\n", $step, escpush($cont) ); } } + + function is_chunked() + { + return TRUE; + } } class Transport_htmlfile extends Transport_iframe {