mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-06-30 19:12:48 -05:00
Put an optional IdempotentCallback in bufchains.
The callback has the same semantics as for packet queues: it triggers automatically when data is added to a bufchain, not when it's removed.
This commit is contained in:
@ -60,8 +60,9 @@ void nonfatal(const char *fmt, ...)
|
||||
sfree(stuff);
|
||||
}
|
||||
|
||||
/* Stub needed to link against misc.c */
|
||||
/* Stubs needed to link against misc.c */
|
||||
void logevent(Frontend *frontend, const char *msg) { assert(0); }
|
||||
void queue_idempotent_callback(IdempotentCallback *ic) { assert(0); }
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
* Progress report code. This is really horrible :-)
|
||||
|
@ -113,8 +113,9 @@ static void unmungestr(char *in, char *out, int outlen)
|
||||
return;
|
||||
}
|
||||
|
||||
/* Stub needed to link against misc.c */
|
||||
/* Stubs needed to link against misc.c */
|
||||
void logevent(Frontend *frontend, const char *msg) { assert(0); }
|
||||
void queue_idempotent_callback(IdempotentCallback *ic) { assert(0); }
|
||||
|
||||
static int has_security;
|
||||
|
||||
|
Reference in New Issue
Block a user