summaryrefslogtreecommitdiff
path: root/channels.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2008-05-19 16:06:47 +1000
committerDamien Miller <djm@mindrot.org>2008-05-19 16:06:47 +1000
commitbab9bd4c20dac1d513fbf16d1214e0c0f9a1bf3b (patch)
tree536e741d3502911fa7f8a8322f15da634d6648a3 /channels.h
parentd654dd27b5774575edd341827c38735ac9222174 (diff)
- markus@cvs.openbsd.org 2008/05/09 16:21:13
[channels.h clientloop.c nchan.c serverloop.c] unbreak ssh -2 localhost od /bin/ls | true ignoring SIGPIPE by adding a new channel message (EOW) that signals the peer that we're not interested in any data it might send. fixes bz #85; discussion, debugging and ok djm@
Diffstat (limited to 'channels.h')
-rw-r--r--channels.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/channels.h b/channels.h
index d4ac24a51..ec2435df0 100644
--- a/channels.h
+++ b/channels.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: channels.h,v 1.91 2008/05/09 04:55:56 djm Exp $ */ 1/* $OpenBSD: channels.h,v 1.92 2008/05/09 16:21:13 markus Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -267,6 +267,7 @@ void chan_mark_dead(Channel *);
267/* channel events */ 267/* channel events */
268 268
269void chan_rcvd_oclose(Channel *); 269void chan_rcvd_oclose(Channel *);
270void chan_rcvd_eow(Channel *); /* SSH2-only */
270void chan_read_failed(Channel *); 271void chan_read_failed(Channel *);
271void chan_ibuf_empty(Channel *); 272void chan_ibuf_empty(Channel *);
272 273