X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/14880afc53efa7bad9ec73d468dc841c28525713..125105d16c788398562ac03e91ce7a0dc0292492:/raw.c?ds=sidebyside diff --git a/raw.c b/raw.c index 9eb2286c..10e9ce64 100644 --- a/raw.c +++ b/raw.c @@ -181,6 +181,15 @@ static void raw_special(void *handle, Telnet_Special code) return; } +/* + * Return a list of the special codes that make sense in this + * protocol. + */ +static const struct telnet_special *raw_get_specials(void *handle) +{ + return NULL; +} + static Socket raw_socket(void *handle) { Raw raw = (Raw) handle; @@ -233,6 +242,7 @@ Backend raw_backend = { raw_sendbuffer, raw_size, raw_special, + raw_get_specials, raw_socket, raw_exitcode, raw_sendok,