]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - raw.c
Turned the old `Telnet Command' System-submenu into a more general
[PuTTY.git] / raw.c
diff --git a/raw.c b/raw.c
index 9eb2286c9276e087bde6452c11cfbe3ac2a30f08..10e9ce64cf5ca320e83e4a7550d3d1bf84ca8b55 100644 (file)
--- 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,