[BACK]Return to readconf.h CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / crypto / external / bsd / openssh / dist

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/crypto/external/bsd/openssh/dist/readconf.h between version 1.1.1.10 and 1.1.1.11

version 1.1.1.10, 2015/08/13 10:25:56 version 1.1.1.11, 2016/03/11 01:50:00
Line 1 
Line 1 
 /* $OpenBSD: readconf.h,v 1.110 2015/07/10 06:21:53 markus Exp $ */  /* $OpenBSD: readconf.h,v 1.113 2016/01/14 16:17:40 markus Exp $ */
   
 /*  /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>   * Author: Tatu Ylonen <ylo@cs.hut.fi>
Line 95  typedef struct {
Line 95  typedef struct {
         int    identity_file_userprovided[SSH_MAX_IDENTITY_FILES];          int    identity_file_userprovided[SSH_MAX_IDENTITY_FILES];
         struct sshkey *identity_keys[SSH_MAX_IDENTITY_FILES];          struct sshkey *identity_keys[SSH_MAX_IDENTITY_FILES];
   
           int     num_certificate_files; /* Number of extra certificates for ssh. */
           char    *certificate_files[SSH_MAX_CERTIFICATE_FILES];
           int     certificate_file_userprovided[SSH_MAX_CERTIFICATE_FILES];
           struct sshkey *certificates[SSH_MAX_CERTIFICATE_FILES];
   
           int     add_keys_to_agent;
   
         /* Local TCP/IP forward requests. */          /* Local TCP/IP forward requests. */
         int     num_local_forwards;          int     num_local_forwards;
         struct Forward *local_forwards;          struct Forward *local_forwards;
Line 130  typedef struct {
Line 137  typedef struct {
         int     permit_local_command;          int     permit_local_command;
         int     visual_host_key;          int     visual_host_key;
   
         int     use_roaming;  
   
         int     request_tty;          int     request_tty;
   
         int     proxy_use_fdpass;          int     proxy_use_fdpass;
Line 194  void  dump_client_config(Options *o, con
Line 199  void  dump_client_config(Options *o, con
 void     add_local_forward(Options *, const struct Forward *);  void     add_local_forward(Options *, const struct Forward *);
 void     add_remote_forward(Options *, const struct Forward *);  void     add_remote_forward(Options *, const struct Forward *);
 void     add_identity_file(Options *, const char *, const char *, int);  void     add_identity_file(Options *, const char *, const char *, int);
   void     add_certificate_file(Options *, const char *, int);
   
 #endif                          /* READCONF_H */  #endif                          /* READCONF_H */

Legend:
Removed from v.1.1.1.10  
changed lines
  Added in v.1.1.1.11

CVSweb <webmaster@jp.NetBSD.org>