| Hi all,
I am looking at the source code of httrack.
I am stopping the process with the following code :
void StopProcess(void)
{
if (global_opt != NULL) {
fflush(stdout);
global_opt->state.stop=1;
}
}
Unfortunately this is slow to download with the piece of code above. It takes
sometimes few seconds. Ideally i would like to stop abruptly the process of
httrack.
I dont want to use exit(1) because it closes everything.
Is there a way to close httrack abruptly ?
Thanks | |