Differences From Artifact [6b89e7d7f9]:
- File misc.h — part of check-in [683ee6bed3] at 2004-11-27 07:20:21 on branch trunk — New timing infrastructure. There's a new function schedule_timer() which pretty much any module can call to request a call-back in the future. So terminal.c can do its own handling of blinking, visual bells and deferred screen updates, without having to rely on term_update() being called 50 times a second (fixes: pterm-timer); and ssh.c and telnet.c both invoke a new module pinger.c which takes care of sending keepalives, so they get sent uniformly in all front ends (fixes: plink-keepalives, unix-keepalives). (user: simon size: 1940)
To Artifact [43c67a4f49]:
- File misc.h — part of check-in [10eff8e7d3] at 2004-12-24 07:39:32 on branch trunk — Basic configurability for client-initiated rekeys. (user: jacob size: 1988)
| ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | + + | #endif #ifndef TRUE #define TRUE 1 #endif typedef struct Filename Filename; typedef struct FontSpec FontSpec; unsigned long parse_blocksize(const char *bs); char *dupstr(const char *s); char *dupcat(const char *s1, ...); char *dupprintf(const char *fmt, ...); char *dupvprintf(const char *fmt, va_list ap); char *fgetline(FILE *fp); |
| ︙ |