no_cache management added
[brisk.git] / web / xynt-http-streaming.js
index fa35007..7d216aa 100644 (file)
@@ -38,7 +38,9 @@ http_streaming.prototype = {
     keepalive_new:    -1,
     keepalives_equal:  0,
     keepalives_eq_max: 6,
-    watchdog_timeout:  100,
+    /* NOTE: right watch_timeout value to 100, for devel reasons use 1000 or more */
+    // FIXME watchdog_timeout:  200,
+    watchdog_timeout:  2000,
     watchdog_ct:       0,
     watchdog_checktm:  20,
     watchable:         false,
@@ -68,6 +70,7 @@ http_streaming.prototype = {
 
         // this.log(this.ifra);
         this.ifra.contentWindow.location.href = this.page;
+        // this.ifra.src = this.page;
         this.watchdog_ct  = 0;
         if (!this.the_end) {
             this.watchdog_hdl = setTimeout(function(obj) { obj.log("tout1"); obj.watchdog(); }, 0, this);
@@ -91,7 +94,7 @@ http_streaming.prototype = {
 
         if (this.sandbox != null) {
             // from old: var zug = "POLL sess = "+sess+" stat = "+stat+" subst = "+subst+" step = "+this.gst.st+" step_loc = "+this.gst.st_loc+" step_loc_new = "+this.gst.st_loc_new+" STOP: "+this.stopped;
-            var zug = "WATCHDOG step = "+this.gst.st+" step_loc = "+this.gst.st_loc+" step_loc_new = "+this.gst.st_loc_new;          
+            var zug = "WATCHDOG  sess = ["+this.sess+"]  step = "+this.gst.st+" step_loc = "+this.gst.st_loc+" step_loc_new = "+this.gst.st_loc_new;          
             if (zug != this.sandbox.innerHTML)
                this.sandbox.innerHTML = zug;
         }
@@ -272,4 +275,4 @@ http_streaming.prototype = {
             return (this.console.log(s));
         }
     }
-}
\ No newline at end of file
+}