mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-07 06:22:47 -05:00
Make lots of 'int' length fields into size_t.
This is a general cleanup which has been overdue for some time: lots of length fields are now the machine word type rather than the (in practice) fixed 'int'.
This commit is contained in:
4
ssh.h
4
ssh.h
@ -271,10 +271,10 @@ struct ConnectionLayerVtable {
|
||||
void (*terminal_size)(ConnectionLayer *cl, int width, int height);
|
||||
|
||||
/* Indicate that the backlog on standard output has cleared */
|
||||
void (*stdout_unthrottle)(ConnectionLayer *cl, int bufsize);
|
||||
void (*stdout_unthrottle)(ConnectionLayer *cl, size_t bufsize);
|
||||
|
||||
/* Query the size of the backlog on standard _input_ */
|
||||
int (*stdin_backlog)(ConnectionLayer *cl);
|
||||
size_t (*stdin_backlog)(ConnectionLayer *cl);
|
||||
|
||||
/* Tell the connection layer that the SSH connection itself has
|
||||
* backed up, so it should tell all currently open channels to
|
||||
|
Reference in New Issue
Block a user