5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
|
ssh->next_rekey =
schedule_timer(ssh->cfg.ssh_rekey_time*60*TICKSPERSEC,
ssh2_timer, ssh);
}
goto wait_for_rekey; /* this is utterly horrid */
} else {
logeventf(ssh, "Initiating key re-exchange (%s)", (char *)in);
logevent((char *)in);
}
}
goto begin_key_exchange;
crFinish(1);
}
|
<
|
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
|
ssh->next_rekey =
schedule_timer(ssh->cfg.ssh_rekey_time*60*TICKSPERSEC,
ssh2_timer, ssh);
}
goto wait_for_rekey; /* this is utterly horrid */
} else {
logeventf(ssh, "Initiating key re-exchange (%s)", (char *)in);
}
}
goto begin_key_exchange;
crFinish(1);
}
|