]> andersk Git - openssh.git/blobdiff - servconf.h
- (bal) Missed msg.[ch] in merge. Required for ssh-keysign.
[openssh.git] / servconf.h
index 3552bb11aa611d2672b3377219256fcd203319f0..c4e5b5f42bf388e51103f9248d3ac808a00ded0a 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: servconf.h,v 1.57 2002/03/20 19:12:25 stevesk Exp $   */
+
 /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>
  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -11,8 +13,6 @@
  * called by a name other than "ssh" or "Secure Shell".
  */
 
-/* RCSID("$OpenBSD: servconf.h,v 1.47 2001/06/26 17:27:24 markus Exp $"); */
-
 #ifndef SERVCONF_H
 #define SERVCONF_H
 
@@ -52,10 +52,10 @@ typedef struct {
                                                 * for RhostsRsaAuth */
        int     print_motd;     /* If true, print /etc/motd. */
        int     print_lastlog;  /* If true, print lastlog */
-       int     check_mail;     /* If true, check for new mail. */
        int     x11_forwarding; /* If true, permit inet (spoofing) X11 fwd. */
        int     x11_display_offset;     /* What DISPLAY number to start
                                         * searching at */
+       int     x11_use_localhost;      /* If true, use localhost for fake X11 server. */
        char   *xauth_location; /* Location of xauth program */
        int     strict_modes;   /* If true, require string home dir modes. */
        int     keepalives;     /* If true, set SO_KEEPALIVE. */
@@ -116,23 +116,26 @@ typedef struct {
        int     max_startups_rate;
        int     max_startups;
        char   *banner;                 /* SSH-2 banner message */
-       int     reverse_mapping_check;  /* cross-check ip and dns */
+       int     verify_reverse_mapping; /* cross-check ip and dns */
        int     client_alive_interval;  /*
-                                        * poke the client this often to 
-                                        * see if it's still there 
+                                        * poke the client this often to
+                                        * see if it's still there
                                         */
        int     client_alive_count_max; /*
-                                        *If the client is unresponsive
-                                        * for this many intervals, above
-                                        * diconnect the session 
+                                        * If the client is unresponsive
+                                        * for this many intervals above,
+                                        * disconnect the session
                                         */
-       char   *authorized_keys_file;   /* File containing public RSA keys */ 
-       char   *authorized_keys_file2;  /* File containing public SSH2 keys */
+
+       char   *authorized_keys_file;   /* File containing public keys */
+       char   *authorized_keys_file2;
        int     pam_authentication_via_kbd_int;
 }       ServerOptions;
 
 void    initialize_server_options(ServerOptions *);
 void    read_server_config(ServerOptions *, const char *);
 void    fill_default_server_options(ServerOptions *);
+int     process_server_config_line(ServerOptions *, char *, const char *, int);
+
 
 #endif                         /* SERVCONF_H */
This page took 0.057035 seconds and 4 git commands to generate.