[BACK]Return to hostfile.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/hostfile.h between version 1.20 and 1.21

version 1.20, 2013/07/12 00:19:58 version 1.21, 2015/01/15 09:40:00
Line 26 
Line 26 
         char *host;          char *host;
         char *file;          char *file;
         u_long line;          u_long line;
         Key *key;          struct sshkey *key;
         HostkeyMarker marker;          HostkeyMarker marker;
 };  };
 struct hostkeys;  struct hostkeys;
Line 35 
Line 35 
 void     load_hostkeys(struct hostkeys *, const char *, const char *);  void     load_hostkeys(struct hostkeys *, const char *, const char *);
 void     free_hostkeys(struct hostkeys *);  void     free_hostkeys(struct hostkeys *);
   
 HostStatus check_key_in_hostkeys(struct hostkeys *, Key *,  HostStatus check_key_in_hostkeys(struct hostkeys *, struct sshkey *,
     const struct hostkey_entry **);      const struct hostkey_entry **);
 int      lookup_key_in_hostkeys_by_type(struct hostkeys *, int,  int      lookup_key_in_hostkeys_by_type(struct hostkeys *, int,
     const struct hostkey_entry **);      const struct hostkey_entry **);
   
 int      hostfile_read_key(char **, int *, Key *);  int      hostfile_read_key(char **, u_int *, struct sshkey *);
 int      add_host_to_hostfile(const char *, const char *, const Key *, int);  int      add_host_to_hostfile(const char *, const char *,
       const struct sshkey *, int);
   
 #define HASH_MAGIC      "|1|"  #define HASH_MAGIC      "|1|"
 #define HASH_DELIM      '|'  #define HASH_DELIM      '|'

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.21