Apparently some SSH servers object to our claiming port-forwarded connections
[u/mdw/putty] / notiming.c
CommitLineData
428cc4b0 1/*
2 * notiming.c: stub version of schedule_timer().
3 *
4 * Used in key generation tools, which need the random number
5 * generator but don't want the hassle of calling noise_regular()
6 * at regular intervals - and don't _need_ it either, since they
7 * have their own rigorous and different means of noise collection.
8 */
9
10#include "putty.h"
11
12long schedule_timer(int ticks, timer_fn_t fn, void *ctx)
13{
14 return 0;
15}