X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/6e1ebb76bc65c074b780b303a1f1550f5ae4dd3c..724cface99da781732deea697cf23c03bb582dda:/raw.c diff --git a/raw.c b/raw.c index 04686f34..52e4b06c 100644 --- a/raw.c +++ b/raw.c @@ -11,25 +11,26 @@ #define TRUE 1 #endif +#define RAW_MAX_BACKLOG 4096 + static Socket s = NULL; +static int raw_bufsize; static void raw_size(void); -static int sb_opt, sb_len; -static char *sb_buf = NULL; -static int sb_size = 0; -#define SB_DELTA 1024 - static void c_write(char *buf, int len) { - from_backend(0, buf, len); + int backlog = from_backend(0, buf, len); + sk_set_frozen(s, backlog > RAW_MAX_BACKLOG); } static int raw_closing(Plug plug, char *error_msg, int error_code, int calling_back) { - sk_close(s); - s = NULL; + if (s) { + sk_close(s); + s = NULL; + } if (error_msg) { /* A socket error has occurred. */ connection_fatal(error_msg); @@ -86,13 +87,23 @@ static char *raw_init(char *host, int port, char **realhost) /* * Called to send data down the raw connection. */ -static void raw_send(char *buf, int len) +static int raw_send(char *buf, int len) { if (s == NULL) return; - sk_write(s, buf, len); + raw_bufsize = sk_write(s, buf, len); + + return raw_bufsize; +} + +/* + * Called to query the current socket sendability status. + */ +static int raw_sendbuffer(void) +{ + return raw_bufsize; } /* @@ -123,6 +134,11 @@ static int raw_sendok(void) return 1; } +static void raw_unthrottle(int backlog) +{ + sk_set_frozen(s, backlog > RAW_MAX_BACKLOG); +} + static int raw_ldisc(int option) { if (option == LD_EDIT || option == LD_ECHO) @@ -133,10 +149,12 @@ static int raw_ldisc(int option) Backend raw_backend = { raw_init, raw_send, + raw_sendbuffer, raw_size, raw_special, raw_socket, raw_sendok, raw_ldisc, + raw_unthrottle, 1 };