summaryrefslogtreecommitdiff
path: root/channels.h
diff options
context:
space:
mode:
Diffstat (limited to 'channels.h')
-rw-r--r--channels.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/channels.h b/channels.h
index c1f01c48b..d75b800f7 100644
--- a/channels.h
+++ b/channels.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: channels.h,v 1.109 2011/09/23 07:45:05 markus Exp $ */ 1/* $OpenBSD: channels.h,v 1.111 2012/04/11 13:16:19 djm Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -105,6 +105,7 @@ struct Channel {
105 int wfd_isatty; /* wfd is a tty */ 105 int wfd_isatty; /* wfd is a tty */
106 int client_tty; /* (client) TTY has been requested */ 106 int client_tty; /* (client) TTY has been requested */
107 int force_drain; /* force close on iEOF */ 107 int force_drain; /* force close on iEOF */
108 time_t notbefore; /* Pause IO until deadline (time_t) */
108 int delayed; /* post-select handlers for newly created 109 int delayed; /* post-select handlers for newly created
109 * channels are delayed until the first call 110 * channels are delayed until the first call
110 * to a matching pre-select handler. 111 * to a matching pre-select handler.
@@ -238,7 +239,8 @@ void channel_input_status_confirm(int, u_int32_t, void *);
238 239
239/* file descriptor handling (read/write) */ 240/* file descriptor handling (read/write) */
240 241
241void channel_prepare_select(fd_set **, fd_set **, int *, u_int*, int); 242void channel_prepare_select(fd_set **, fd_set **, int *, u_int*,
243 time_t*, int);
242void channel_after_select(fd_set *, fd_set *); 244void channel_after_select(fd_set *, fd_set *);
243void channel_output_poll(void); 245void channel_output_poll(void);
244 246
@@ -253,6 +255,7 @@ void channel_set_af(int af);
253void channel_permit_all_opens(void); 255void channel_permit_all_opens(void);
254void channel_add_permitted_opens(char *, int); 256void channel_add_permitted_opens(char *, int);
255int channel_add_adm_permitted_opens(char *, int); 257int channel_add_adm_permitted_opens(char *, int);
258void channel_disable_adm_local_opens(void);
256void channel_update_permitted_opens(int, int); 259void channel_update_permitted_opens(int, int);
257void channel_clear_permitted_opens(void); 260void channel_clear_permitted_opens(void);
258void channel_clear_adm_permitted_opens(void); 261void channel_clear_adm_permitted_opens(void);