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

Diff for /src/usr.bin/ssh/misc.h between version 1.12 and 1.12.10.2

version 1.12, 2002/03/19 10:49:35 version 1.12.10.2, 2005/03/10 17:15:04
Line 12 
Line 12 
  * called by a name other than "ssh" or "Secure Shell".   * called by a name other than "ssh" or "Secure Shell".
  */   */
   
   /* misc.c */
   
 char    *chop(char *);  char    *chop(char *);
 char    *strdelim(char **);  char    *strdelim(char **);
 void     set_nonblock(int);  int      set_nonblock(int);
 void     unset_nonblock(int);  int      unset_nonblock(int);
 void     set_nodelay(int);  void     set_nodelay(int);
 int      a2port(const char *);  int      a2port(const char *);
   char    *hpdelim(char **);
 char    *cleanhostname(char *);  char    *cleanhostname(char *);
 char    *colon(char *);  char    *colon(char *);
 long     convtime(const char *);  long     convtime(const char *);
Line 27 
Line 30 
 typedef struct arglist arglist;  typedef struct arglist arglist;
 struct arglist {  struct arglist {
         char    **list;          char    **list;
         int     num;          u_int   num;
         int     nalloc;          u_int   nalloc;
 };  };
 void     addargs(arglist *, char *, ...) __attribute__((format(printf, 2, 3)));  void     addargs(arglist *, char *, ...) __attribute__((format(printf, 2, 3)));
   
   /* tildexpand.c */
   
   char    *tilde_expand_filename(const char *, uid_t);
   
   /* readpass.c */
   
   #define RP_ECHO                 0x0001
   #define RP_ALLOW_STDIN          0x0002
   #define RP_ALLOW_EOF            0x0004
   #define RP_USE_ASKPASS          0x0008
   
   char    *read_passphrase(const char *, int);
   int      ask_permission(const char *, ...) __attribute__((format(printf, 1, 2)));
   int      read_keyfile_line(FILE *, const char *, char *, size_t, u_long *);

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.12.10.2