Deleted Added
full compact
ssh1.h (76259) ssh1.h (92555)
1/* $OpenBSD: ssh1.h,v 1.2 2001/01/29 01:58:18 niklas Exp $ */
1/* $OpenBSD: ssh1.h,v 1.3 2001/05/30 12:55:13 markus Exp $ */
2
3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * All rights reserved
7 *
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this

--- 51 unchanged lines hidden (view full) ---

61#define SSH_CMSG_AUTH_TIS 39 /* we use this for s/key */
62#define SSH_SMSG_AUTH_TIS_CHALLENGE 40 /* challenge (string) */
63#define SSH_CMSG_AUTH_TIS_RESPONSE 41 /* response (string) */
64#define SSH_CMSG_AUTH_KERBEROS 42 /* (KTEXT) */
65#define SSH_SMSG_AUTH_KERBEROS_RESPONSE 43 /* (KTEXT) */
66#define SSH_CMSG_HAVE_KERBEROS_TGT 44 /* credentials (s) */
67#define SSH_CMSG_HAVE_AFS_TOKEN 65 /* token (s) */
68
2
3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * All rights reserved
7 *
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this

--- 51 unchanged lines hidden (view full) ---

61#define SSH_CMSG_AUTH_TIS 39 /* we use this for s/key */
62#define SSH_SMSG_AUTH_TIS_CHALLENGE 40 /* challenge (string) */
63#define SSH_CMSG_AUTH_TIS_RESPONSE 41 /* response (string) */
64#define SSH_CMSG_AUTH_KERBEROS 42 /* (KTEXT) */
65#define SSH_SMSG_AUTH_KERBEROS_RESPONSE 43 /* (KTEXT) */
66#define SSH_CMSG_HAVE_KERBEROS_TGT 44 /* credentials (s) */
67#define SSH_CMSG_HAVE_AFS_TOKEN 65 /* token (s) */
68
69/* protocol version 1.5 overloads some version 1.3 message types */
70#define SSH_MSG_CHANNEL_INPUT_EOF SSH_MSG_CHANNEL_CLOSE
71#define SSH_MSG_CHANNEL_OUTPUT_CLOSE SSH_MSG_CHANNEL_CLOSE_CONFIRMATION
72
69/*
70 * Authentication methods. New types can be added, but old types should not
71 * be removed for compatibility. The maximum allowed value is 31.
72 */
73#define SSH_AUTH_RHOSTS 1
74#define SSH_AUTH_RSA 2
75#define SSH_AUTH_PASSWORD 3
76#define SSH_AUTH_RHOSTS_RSA 4
77#define SSH_AUTH_TIS 5
78#define SSH_AUTH_KERBEROS 6
79#define SSH_PASS_KERBEROS_TGT 7
80 /* 8 to 15 are reserved */
81#define SSH_PASS_AFS_TOKEN 21
82
83/* Protocol flags. These are bit masks. */
84#define SSH_PROTOFLAG_SCREEN_NUMBER 1 /* X11 forwarding includes screen */
85#define SSH_PROTOFLAG_HOST_IN_FWD_OPEN 2 /* forwarding opens contain host */
73/*
74 * Authentication methods. New types can be added, but old types should not
75 * be removed for compatibility. The maximum allowed value is 31.
76 */
77#define SSH_AUTH_RHOSTS 1
78#define SSH_AUTH_RSA 2
79#define SSH_AUTH_PASSWORD 3
80#define SSH_AUTH_RHOSTS_RSA 4
81#define SSH_AUTH_TIS 5
82#define SSH_AUTH_KERBEROS 6
83#define SSH_PASS_KERBEROS_TGT 7
84 /* 8 to 15 are reserved */
85#define SSH_PASS_AFS_TOKEN 21
86
87/* Protocol flags. These are bit masks. */
88#define SSH_PROTOFLAG_SCREEN_NUMBER 1 /* X11 forwarding includes screen */
89#define SSH_PROTOFLAG_HOST_IN_FWD_OPEN 2 /* forwarding opens contain host */
86