X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2FObj%2Fuser.phh;h=2caf30a94f1f0cbe5fb55d8072bfaf3eac0162ef;hb=8e4b8df113c19f41ddab9e31f9fd4fc24db2d91f;hp=55a3a7504d9fc59b622102c69f733b7d5e6780c8;hpb=b41e2233431a8862b741c7eb4c998c1a47263ed7;p=brisk.git diff --git a/web/Obj/user.phh b/web/Obj/user.phh index 55a3a75..2caf30a 100644 --- a/web/Obj/user.phh +++ b/web/Obj/user.phh @@ -720,7 +720,13 @@ function stream_init($init_string, $enc, $header, &$header_out, &$body, $get, $p $this->rd_data_set($curtime, $transp, $enc, $stat, $subst, $step, $from); - $body .= $this->rd_transp->init($enc, $header, &$header_out, $init_string, self::base_get(), $this->rd_scristp); + $ret = $this->rd_transp->init($enc, $header, &$header_out, $init_string, self::base_get(), $this->rd_scristp); + + if ($ret === FALSE) { + return FALSE; + } + + $body .= $ret; return TRUE; } @@ -760,6 +766,11 @@ function stream_keepalive($with_ping) return ($this->rd_transp->chunk( $this->rd_scristp++, ($with_ping ? "act_ping();" : NULL))); } +function stream_close() +{ + return ($this->rd_transp->close()); +} + static function base_get() { $c = get_called_class(); @@ -803,7 +814,7 @@ function chunked_content($content) return (sprintf("%X\r\n", $cont_comp_l).$cont_comp."\r\n"); } else { - return $content; + return $cont_comp; } }