]> andersk Git - openssh.git/blame - ssh.h
- deraadt@cvs.openbsd.org 2001/02/04 08:23:08
[openssh.git] / ssh.h
CommitLineData
8efc0c15 1/*
5260325f 2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5260325f 3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
6ae2364d 5 *
bcbf86ec 6 * As far as I am concerned, the code I have written for this software
7 * can be used freely for any purpose. Any derived versions of this
8 * software must be clearly marked as such, and if the derived work is
9 * incompatible with the protocol description in the RFC file, it must be
10 * called by a name other than "ssh" or "Secure Shell".
5260325f 11 */
8efc0c15 12
556eb464 13/* RCSID("$OpenBSD: ssh.h,v 1.62 2001/01/23 10:45:10 markus Exp $"); */
8efc0c15 14
15#ifndef SSH_H
16#define SSH_H
17
4cca272e 18#include <netinet/in.h> /* For struct sockaddr_in */
19#include <pwd.h> /* For struct pw */
6a17f9c2 20#include <stdarg.h> /* For va_list */
57ce3f00 21#include <syslog.h> /* For LOG_AUTH and friends */
48e671d5 22#include <sys/socket.h> /* For struct sockaddr_storage */
23#include "fake-socket.h" /* For struct sockaddr_storage */
eef6f7e9 24#ifdef HAVE_SYS_SELECT_H
25# include <sys/select.h>
26#endif
42f11eb2 27
8efc0c15 28/* Cipher used for encrypting authentication files. */
29#define SSH_AUTHFILE_CIPHER SSH_CIPHER_3DES
30
31/* Default port number. */
32#define SSH_DEFAULT_PORT 22
33
34/* Maximum number of TCP/IP ports forwarded per direction. */
35#define SSH_MAX_FORWARDS_PER_DIRECTION 100
36
aa3378df 37/*
38 * Maximum number of RSA authentication identity files that can be specified
39 * in configuration files or on the command line.
40 */
8efc0c15 41#define SSH_MAX_IDENTITY_FILES 100
42
aa3378df 43/*
44 * Major protocol version. Different version indicates major incompatiblity
45 * that prevents communication.
a8be9f80 46 *
aa3378df 47 * Minor protocol version. Different version indicates minor incompatibility
48 * that does not prevent interoperation.
49 */
a8be9f80 50#define PROTOCOL_MAJOR_1 1
51#define PROTOCOL_MINOR_1 5
52
53/* We support both SSH1 and SSH2 */
54#define PROTOCOL_MAJOR_2 2
55#define PROTOCOL_MINOR_2 0
8efc0c15 56
aa3378df 57/*
58 * Name for the service. The port named by this service overrides the
59 * default port if present.
60 */
8efc0c15 61#define SSH_SERVICE_NAME "ssh"
62
4e577b89 63#if defined(USE_PAM) && !defined(SSHD_PAM_SERVICE)
64# define SSHD_PAM_SERVICE "sshd"
65#endif
66
aa3378df 67/*
68 * Name of the environment variable containing the pathname of the
69 * authentication socket.
70 */
42f11eb2 71#define SSH_AGENTPID_ENV_NAME "SSH_AGENT_PID"
8efc0c15 72
aa3378df 73/*
74 * Name of the environment variable containing the pathname of the
75 * authentication socket.
76 */
42f11eb2 77#define SSH_AUTHSOCKET_ENV_NAME "SSH_AUTH_SOCK"
50da1126 78
57112b5a 79/*
42f11eb2 80 * Environment variable for overwriting the default location of askpass
57112b5a 81 */
57112b5a 82#define SSH_ASKPASS_ENV "SSH_ASKPASS"
83
aa3378df 84/*
85 * Force host key length and server key length to differ by at least this
86 * many bits. This is to make double encryption with rsaref work.
87 */
8efc0c15 88#define SSH_KEY_BITS_RESERVED 128
89
aa3378df 90/*
91 * Length of the session key in bytes. (Specified as 256 bits in the
92 * protocol.)
93 */
8efc0c15 94#define SSH_SESSION_KEY_LENGTH 32
95
96/* Name of Kerberos service for SSH to use. */
97#define KRB4_SERVICE_NAME "rcmd"
98
5260325f 99#endif /* SSH_H */
This page took 0.139954 seconds and 5 git commands to generate.