Mercurial > dropbear
comparison cli-session.c @ 62:20563735e8b5
just checkpointing
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 10 Aug 2004 17:09:52 +0000 |
parents | 4b53a43f0082 |
children | efb5e0b335cf |
comparison
equal
deleted
inserted
replaced
61:3a4f0ef1e8c3 | 62:20563735e8b5 |
---|---|
2 #include "session.h" | 2 #include "session.h" |
3 #include "dbutil.h" | 3 #include "dbutil.h" |
4 #include "kex.h" | 4 #include "kex.h" |
5 #include "ssh.h" | 5 #include "ssh.h" |
6 #include "packet.h" | 6 #include "packet.h" |
7 #include "tcpfwd-direct.h" | 7 #include "tcp-accept.h" |
8 #include "tcpfwd-remote.h" | 8 #include "tcp-connect.h" |
9 #include "channel.h" | 9 #include "channel.h" |
10 #include "random.h" | 10 #include "random.h" |
11 #include "service.h" | 11 #include "service.h" |
12 #include "runopts.h" | 12 #include "runopts.h" |
13 #include "chansession.h" | 13 #include "chansession.h" |
29 {SSH_MSG_USERAUTH_SUCCESS, recv_msg_userauth_success}, /* client */ | 29 {SSH_MSG_USERAUTH_SUCCESS, recv_msg_userauth_success}, /* client */ |
30 {SSH_MSG_KEXINIT, recv_msg_kexinit}, | 30 {SSH_MSG_KEXINIT, recv_msg_kexinit}, |
31 {SSH_MSG_KEXDH_REPLY, recv_msg_kexdh_reply}, /* client */ | 31 {SSH_MSG_KEXDH_REPLY, recv_msg_kexdh_reply}, /* client */ |
32 {SSH_MSG_NEWKEYS, recv_msg_newkeys}, | 32 {SSH_MSG_NEWKEYS, recv_msg_newkeys}, |
33 {SSH_MSG_SERVICE_ACCEPT, recv_msg_service_accept}, /* client */ | 33 {SSH_MSG_SERVICE_ACCEPT, recv_msg_service_accept}, /* client */ |
34 {SSH_MSG_GLOBAL_REQUEST, recv_msg_global_request_remotetcp}, | |
35 {SSH_MSG_CHANNEL_REQUEST, recv_msg_channel_request}, | 34 {SSH_MSG_CHANNEL_REQUEST, recv_msg_channel_request}, |
36 {SSH_MSG_CHANNEL_OPEN, recv_msg_channel_open}, | 35 {SSH_MSG_CHANNEL_OPEN, recv_msg_channel_open}, |
37 {SSH_MSG_CHANNEL_EOF, recv_msg_channel_eof}, | 36 {SSH_MSG_CHANNEL_EOF, recv_msg_channel_eof}, |
38 {SSH_MSG_CHANNEL_CLOSE, recv_msg_channel_close}, | 37 {SSH_MSG_CHANNEL_CLOSE, recv_msg_channel_close}, |
39 {SSH_MSG_CHANNEL_OPEN_CONFIRMATION, recv_msg_channel_open_confirmation}, | 38 {SSH_MSG_CHANNEL_OPEN_CONFIRMATION, recv_msg_channel_open_confirmation}, |