Deleted Added
full compact
ssh1.h (137015) ssh1.h (146998)
1/* $OpenBSD: ssh1.h,v 1.4 2004/07/11 17:48:47 deraadt Exp $ */
1/* $OpenBSD: ssh1.h,v 1.5 2004/10/20 11:48:53 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
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
13 */
14
15/*
16 * Definition of message types. New values can be added, but old values
17 * should not be removed or without careful consideration of the consequences
18 * for compatibility. The maximum value is 254; value 255 is reserved for
19 * future extension.
20 */
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
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
13 */
14
15/*
16 * Definition of message types. New values can be added, but old values
17 * should not be removed or without careful consideration of the consequences
18 * for compatibility. The maximum value is 254; value 255 is reserved for
19 * future extension.
20 */
21/* Ranges */
22#define SSH_MSG_MIN 1
23#define SSH_MSG_MAX 254
21/* Message name */ /* msg code */ /* arguments */
22#define SSH_MSG_NONE 0 /* no message */
23#define SSH_MSG_DISCONNECT 1 /* cause (string) */
24#define SSH_SMSG_PUBLIC_KEY 2 /* ck,msk,srvk,hostk */
25#define SSH_CMSG_SESSION_KEY 3 /* key (BIGNUM) */
26#define SSH_CMSG_USER 4 /* user (string) */
27#define SSH_CMSG_AUTH_RHOSTS 5 /* user (string) */
28#define SSH_CMSG_AUTH_RSA 6 /* modulus (BIGNUM) */

--- 61 unchanged lines hidden ---
24/* Message name */ /* msg code */ /* arguments */
25#define SSH_MSG_NONE 0 /* no message */
26#define SSH_MSG_DISCONNECT 1 /* cause (string) */
27#define SSH_SMSG_PUBLIC_KEY 2 /* ck,msk,srvk,hostk */
28#define SSH_CMSG_SESSION_KEY 3 /* key (BIGNUM) */
29#define SSH_CMSG_USER 4 /* user (string) */
30#define SSH_CMSG_AUTH_RHOSTS 5 /* user (string) */
31#define SSH_CMSG_AUTH_RSA 6 /* modulus (BIGNUM) */

--- 61 unchanged lines hidden ---