1 /* $OpenBSD: misc.h,v 1.22 2005/04/09 04:32:54 djm Exp $ */
4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
18 char *strdelim(char **);
19 int set_nonblock(int);
20 int unset_nonblock(int);
21 void set_nodelay(int);
22 int a2port(const char *);
23 char *hpdelim(char **);
24 char *cleanhostname(char *);
26 long convtime(const char *);
27 char *tilde_expand_filename(const char *, uid_t
);
29 struct passwd
*pwcopy(struct passwd
*);
31 typedef struct arglist arglist
;
37 void addargs(arglist
*, char *, ...) __attribute__((format(printf
, 2, 3)));
41 #define RP_ECHO 0x0001
42 #define RP_ALLOW_STDIN 0x0002
43 #define RP_ALLOW_EOF 0x0004
44 #define RP_USE_ASKPASS 0x0008
46 char *read_passphrase(const char *, int);
47 int ask_permission(const char *, ...) __attribute__((format(printf
, 1, 2)));
48 int read_keyfile_line(FILE *, const char *, char *, size_t, u_long
*);