diff options
author | mouring <mouring> | 2000-12-06 01:42:49 +0000 |
---|---|---|
committer | mouring <mouring> | 2000-12-06 01:42:49 +0000 |
commit | 9b369ec7bf75c4d7bfc867191b9ecdeb0c121229 (patch) | |
tree | a02f87b631f70ea058a8ac68f0588769af7be9d8 /channels.h | |
parent | 44e72ea62a5e8671bd5795a3acf615231a89b211 (diff) | |
download | openssh-9b369ec7bf75c4d7bfc867191b9ecdeb0c121229.tar.gz |
20001206
- (bal) OpenSSH CVS updates:
- markus@cvs.openbsd.org 2000/12/05 20:34:09
[channels.c channels.h clientloop.c serverloop.c]
async connects for -R/-L; ok deraadt@
- todd@cvs.openssh.org 2000/12/05 16:47:28
[sshd.c]
tweak comment to reflect real location of pid file; ok provos@
Diffstat (limited to 'channels.h')
-rw-r--r-- | channels.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -32,7 +32,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -/* RCSID("$OpenBSD: channels.h,v 1.23 2000/11/06 23:04:56 markus Exp $"); */ +/* RCSID("$OpenBSD: channels.h,v 1.24 2000/12/05 20:34:10 markus Exp $"); */ #ifndef CHANNELS_H #define CHANNELS_H @@ -50,7 +50,8 @@ #define SSH_CHANNEL_OUTPUT_DRAINING 9 /* sending remaining data to app */ #define SSH_CHANNEL_LARVAL 10 /* larval session */ #define SSH_CHANNEL_RPORT_LISTENER 11 /* Listening to a R-style port */ -#define SSH_CHANNEL_MAX_TYPE 12 +#define SSH_CHANNEL_CONNECTING 12 +#define SSH_CHANNEL_MAX_TYPE 13 /* * Data structure for channel data. This is iniailized in channel_allocate |