summaryrefslogtreecommitdiff
path: root/channels.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-12-21 15:00:19 +1100
committerDamien Miller <djm@mindrot.org>2001-12-21 15:00:19 +1100
commit278f907a2d6d00d6f52a11bf9577648aadbf0994 (patch)
tree50f885a7fd73b813754e3b675e810dc01ba78b78 /channels.h
parente737856350287104a12f5a97c81fad1f7bcd7096 (diff)
- djm@cvs.openbsd.org 2001/12/20 22:50:24
[auth2.c auth2-chall.c channels.c channels.h clientloop.c dispatch.c] [dispatch.h kex.c kex.h packet.c packet.h serverloop.c ssh.c] [sshconnect2.c] Conformance fix: we should send failing packet sequence number when responding with a SSH_MSG_UNIMPLEMENTED message. Spotted by yakk@yakk.dot.net; ok markus@
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 e994aaeb6..c54b23e67 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.54 2001/12/20 16:37:29 markus Exp $"); */ 35/* RCSID("$OpenBSD: channels.h,v 1.55 2001/12/20 22:50:24 djm 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, void *); 160void channel_input_channel_request(int, int, u_int32_t, void *);
161void channel_input_close(int, int, void *); 161void channel_input_close(int, int, u_int32_t, void *);
162void channel_input_close_confirmation(int, int, void *); 162void channel_input_close_confirmation(int, int, u_int32_t, void *);
163void channel_input_data(int, int, void *); 163void channel_input_data(int, int, u_int32_t, void *);
164void channel_input_extended_data(int, int, void *); 164void channel_input_extended_data(int, int, u_int32_t, void *);
165void channel_input_ieof(int, int, void *); 165void channel_input_ieof(int, int, u_int32_t, void *);
166void channel_input_oclose(int, int, void *); 166void channel_input_oclose(int, int, u_int32_t, void *);
167void channel_input_open_confirmation(int, int, void *); 167void channel_input_open_confirmation(int, int, u_int32_t, void *);
168void channel_input_open_failure(int, int, void *); 168void channel_input_open_failure(int, int, u_int32_t, void *);
169void channel_input_port_open(int, int, void *); 169void channel_input_port_open(int, int, u_int32_t, void *);
170void channel_input_window_adjust(int, int, void *); 170void channel_input_window_adjust(int, 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, void *); 202void x11_input_open(int, 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, void *); 204void deny_input_open(int, 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, void *); 212void auth_input_open_request(int, int, u_int32_t, void *);
213 213
214/* channel close */ 214/* channel close */
215 215