Skip to content
Snippets Groups Projects
Commit 4ec20c85 authored by rswindell's avatar rswindell
Browse files

If js.auto_terminate is true (the default) and the remote user disconnects,

auto-terminate the JS script.
parent 35a2469b
No related branches found
No related tags found
No related merge requests found
......@@ -532,6 +532,12 @@ js_BranchCallback(JSContext *cx, JSScript *script)
if((sbbs=(sbbs_t*)JS_GetContextPrivate(cx))==NULL)
return(JS_FALSE);
if(sbbs->js_branch.auto_terminate && !sbbs->online) {
JS_ReportError(cx,"Disconnected");
sbbs->js_branch.counter=0;
return(JS_FALSE);
}
return(js_CommonBranchCallback(cx,&sbbs->js_branch));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment