Revamp of EOF handling in all network connections, pipes and other
[u/mdw/putty] / unix / gtkwin.c
index 3f6f94b..a8be624 100644 (file)
@@ -210,6 +210,11 @@ int from_backend_untrusted(void *frontend, const char *data, int len)
     return term_data_untrusted(inst->term, data, len);
 }
 
+int from_backend_eof(void *frontend)
+{
+    return TRUE;   /* do respond to incoming EOF with outgoing */
+}
+
 int get_userpass_input(prompts_t *p, unsigned char *in, int inlen)
 {
     struct gui_data *inst = (struct gui_data *)p->frontend;