OSDN Git Service

Fix bugs of simultaneous connection.
[ffftp/ffftp.git] / contrib / putty / NOTIMING.C
1 /*\r
2  * notiming.c: stub version of timing API.\r
3  * \r
4  * Used in any tool which needs a subsystem linked against the\r
5  * timing API but doesn't want to actually provide timing. For\r
6  * example, key generation tools need the random number generator,\r
7  * but they don't want the hassle of calling noise_regular() at\r
8  * regular intervals - and they don't _need_ it either, since they\r
9  * have their own rigorous and different means of noise collection.\r
10  */\r
11 \r
12 #include "putty.h"\r
13 \r
14 long schedule_timer(int ticks, timer_fn_t fn, void *ctx)\r
15 {\r
16     return 0;\r
17 }\r
18 \r
19 void expire_timer_context(void *ctx)\r
20 {\r
21 }\r