X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/2c94fd1cbf32093be173ea6c4378caa109f73dd4..0d694692c59504838ec2043ddfe670b3a9247faf:/rlogin.c diff --git a/rlogin.c b/rlogin.c index c77f381f..eb6a6c2d 100644 --- a/rlogin.c +++ b/rlogin.c @@ -1,6 +1,7 @@ #include #include #include +#include #include "putty.h" @@ -24,13 +25,14 @@ static void c_write (char *buf, int len) { from_backend(0, buf, len); } -static int rlogin_receive (Socket s, int urgent, char *data, int len) { +static int rlogin_receive (Socket skt, int urgent, char *data, int len) { if (urgent==3) { /* A socket error has occurred. */ + sk_close(s); + s = NULL; connection_fatal(data); - len = 0; - } - if (!len) { + return 0; + } else if (!len) { /* Connection has closed. */ sk_close(s); s = NULL; @@ -40,7 +42,7 @@ static int rlogin_receive (Socket s, int urgent, char *data, int len) { char c; c = *data++; len--; - if (c == 0x80) + if (c == '\x80') rlogin_size(); /* * We should flush everything (aka Telnet SYNCH) if we see @@ -48,8 +50,22 @@ static int rlogin_receive (Socket s, int urgent, char *data, int len) { * on 0x10 and 0x20 respectively. I'm not convinced it's * worth it... */ + } else { + /* + * Main rlogin protocol. This is really simple: the first + * byte is expected to be NULL and is ignored, and the rest + * is printed. + */ + static int firstbyte = 1; + if (firstbyte) { + if (data[0] == '\0') { + data++; + len--; + } + firstbyte = 0; + } + c_write(data, len); } - c_write(data, len); return 1; } @@ -77,7 +93,7 @@ static char *rlogin_init (char *host, int port, char **realhost) { /* * Open socket. */ - s = sk_new(addr, port, 1, rlogin_receive); + s = sk_new(addr, port, 1, 0, rlogin_receive); if ( (err = sk_socket_error(s)) ) return err; @@ -102,8 +118,6 @@ static char *rlogin_init (char *host, int port, char **realhost) { sk_write(s, &z, 1); } - begin_session(); - return NULL; } @@ -142,6 +156,10 @@ static Socket rlogin_socket(void) { return s; } static int rlogin_sendok(void) { return 1; } +static int rlogin_ldisc(int option) { + return 0; +} + Backend rlogin_backend = { rlogin_init, rlogin_send, @@ -149,5 +167,6 @@ Backend rlogin_backend = { rlogin_special, rlogin_socket, rlogin_sendok, + rlogin_ldisc, 1 };