[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.8.1

version 1.12, 2002/03/19 10:49:35 version 1.12.8.1, 2004/08/19 22:37:31
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    *cleanhostname(char *);  char    *cleanhostname(char *);
Line 27 
Line 29 
 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);

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