summaryrefslogtreecommitdiff
path: root/channels.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-01-22 23:17:30 +1100
committerDamien Miller <djm@mindrot.org>2002-01-22 23:17:30 +1100
commit630d6f4479df4084ef05ce233c11e66c68a98a4f (patch)
tree27dc26ac3fd5bb1131ca39187899dfe2494117c4 /channels.h
parentdff5099f13e2e679b93d3cfe7073c9cd92b19b06 (diff)
- markus@cvs.openbsd.org 2001/12/28 15:06:00
[auth2.c auth2-chall.c channels.c channels.h clientloop.c dispatch.c dispatch.h kex.c kex.h serverloop.c ssh.c sshconnect2.c] remove plen from the dispatch fn. it's no longer used.
Diffstat (limited to 'channels.h')
-rw-r--r--channels.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/channels.h b/channels.h
index c54b23e67..40142c509 100644
--- a/channels.h
+++ b/channels.h
@@ -32,7 +32,7 @@
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
33 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 33 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 */ 34 */
35/* RCSID("$OpenBSD: channels.h,v 1.55 2001/12/20 22:50:24 djm Exp $"); */ 35/* RCSID("$OpenBSD: channels.h,v 1.56 2001/12/28 15:06:00 markus Exp $"); */
36 36
37#ifndef CHANNEL_H 37#ifndef CHANNEL_H
38#define CHANNEL_H 38#define CHANNEL_H
@@ -157,17 +157,17 @@ int channel_close_fd(int *);
157 157
158/* protocol handler */ 158/* protocol handler */
159 159
160void channel_input_channel_request(int, int, u_int32_t, void *); 160void channel_input_channel_request(int, u_int32_t, void *);
161void channel_input_close(int, int, u_int32_t, void *); 161void channel_input_close(int, u_int32_t, void *);
162void channel_input_close_confirmation(int, int, u_int32_t, void *); 162void channel_input_close_confirmation(int, u_int32_t, void *);
163void channel_input_data(int, int, u_int32_t, void *); 163void channel_input_data(int, u_int32_t, void *);
164void channel_input_extended_data(int, int, u_int32_t, void *); 164void channel_input_extended_data(int, u_int32_t, void *);
165void channel_input_ieof(int, int, u_int32_t, void *); 165void channel_input_ieof(int, u_int32_t, void *);
166void channel_input_oclose(int, int, u_int32_t, void *); 166void channel_input_oclose(int, u_int32_t, void *);
167void channel_input_open_confirmation(int, int, u_int32_t, void *); 167void channel_input_open_confirmation(int, u_int32_t, void *);
168void channel_input_open_failure(int, int, u_int32_t, void *); 168void channel_input_open_failure(int, u_int32_t, void *);
169void channel_input_port_open(int, int, u_int32_t, void *); 169void channel_input_port_open(int, u_int32_t, void *);
170void channel_input_window_adjust(int, int, u_int32_t, void *); 170void channel_input_window_adjust(int, u_int32_t, void *);
171 171
172/* file descriptor handling (read/write) */ 172/* file descriptor handling (read/write) */
173 173
@@ -199,9 +199,9 @@ channel_request_forwarding(const char *, u_short, const char *, u_short, int,
199 199
200int x11_connect_display(void); 200int x11_connect_display(void);
201int x11_create_display_inet(int, int, int); 201int x11_create_display_inet(int, int, int);
202void x11_input_open(int, int, u_int32_t, void *); 202void x11_input_open(int, u_int32_t, void *);
203void x11_request_forwarding_with_spoofing(int, const char *, const char *); 203void x11_request_forwarding_with_spoofing(int, const char *, const char *);
204void deny_input_open(int, int, u_int32_t, void *); 204void deny_input_open(int, u_int32_t, void *);
205 205
206/* agent forwarding */ 206/* agent forwarding */
207 207
@@ -209,7 +209,7 @@ void auth_request_forwarding(void);
209char *auth_get_socket_name(void); 209char *auth_get_socket_name(void);
210void auth_sock_cleanup_proc(void *); 210void auth_sock_cleanup_proc(void *);
211int auth_input_request_forwarding(struct passwd *); 211int auth_input_request_forwarding(struct passwd *);
212void auth_input_open_request(int, int, u_int32_t, void *); 212void auth_input_open_request(int, u_int32_t, void *);
213 213
214/* channel close */ 214/* channel close */
215 215