You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes the service does not respond. After a lot of files are transferred, the web page and other requests are not accepted, and the software functions are displayed normally. At this time, the service needs to be restarted to continue running. Here is a timer, 10 second interval, whether Will affect performance.
procedure TmainFrm.TimerTestTimer(Sender: TObject);
begin
if(not srv.active) then
begin
add2log('not active');
if assigned(srv) then srv.stop();
srv.port := port;
srv.start(listenOn);
end
else
begin
add2log('active');
end;
end;
The text was updated successfully, but these errors were encountered:
Sometimes the service does not respond. After a lot of files are transferred, the web page and other requests are not accepted, and the software functions are displayed normally. At this time, the service needs to be restarted to continue running. Here is a timer, 10 second interval, whether Will affect performance.
The text was updated successfully, but these errors were encountered: