summaryrefslogtreecommitdiff
path: root/ssh.h
diff options
context:
space:
mode:
Diffstat (limited to 'ssh.h')
-rw-r--r--ssh.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/ssh.h b/ssh.h
index b45350d12..649c89de2 100644
--- a/ssh.h
+++ b/ssh.h
@@ -13,7 +13,7 @@
13 * 13 *
14 */ 14 */
15 15
16/* RCSID("$Id: ssh.h,v 1.37 2000/05/01 23:56:42 damien Exp $"); */ 16/* RCSID("$Id: ssh.h,v 1.38 2000/05/07 02:03:19 damien Exp $"); */
17 17
18#ifndef SSH_H 18#ifndef SSH_H
19#define SSH_H 19#define SSH_H
@@ -97,7 +97,7 @@
97#define HOST_KEY_FILE ETCDIR "/ssh_host_key" 97#define HOST_KEY_FILE ETCDIR "/ssh_host_key"
98#define SERVER_CONFIG_FILE ETCDIR "/sshd_config" 98#define SERVER_CONFIG_FILE ETCDIR "/sshd_config"
99#define HOST_CONFIG_FILE ETCDIR "/ssh_config" 99#define HOST_CONFIG_FILE ETCDIR "/ssh_config"
100#define DSA_KEY_FILE ETCDIR "/ssh_host_dsa_key" 100#define HOST_DSA_KEY_FILE ETCDIR "/ssh_host_dsa_key"
101 101
102#ifndef SSH_PROGRAM 102#ifndef SSH_PROGRAM
103#define SSH_PROGRAM "/usr/bin/ssh" 103#define SSH_PROGRAM "/usr/bin/ssh"
@@ -146,6 +146,7 @@
146 * file should only be readable by the user him/herself. 146 * file should only be readable by the user him/herself.
147 */ 147 */
148#define SSH_CLIENT_IDENTITY ".ssh/identity" 148#define SSH_CLIENT_IDENTITY ".ssh/identity"
149#define SSH_CLIENT_ID_DSA ".ssh/id_dsa"
149 150
150/* 151/*
151 * Configuration file in user\'s home directory. This file need not be 152 * Configuration file in user\'s home directory. This file need not be
@@ -527,7 +528,7 @@ int auth_krb4_password(struct passwd * pw, const char *password);
527int auth_kerberos_tgt(struct passwd * pw, const char *string); 528int auth_kerberos_tgt(struct passwd * pw, const char *string);
528int auth_afs_token(struct passwd * pw, const char *token_string); 529int auth_afs_token(struct passwd * pw, const char *token_string);
529 530
530int creds_to_radix(CREDENTIALS * creds, unsigned char *buf); 531int creds_to_radix(CREDENTIALS * creds, unsigned char *buf, size_t buflen);
531int radix_to_creds(const char *buf, CREDENTIALS * creds); 532int radix_to_creds(const char *buf, CREDENTIALS * creds);
532#endif /* AFS */ 533#endif /* AFS */
533 534