Darren Tucker | c7a6fc4 | 2004-08-13 21:18:00 +1000 | [diff] [blame] | 1 | /* $OpenBSD: misc.h,v 1.17 2004/08/11 21:43:05 avsm Exp $ */ |
Ben Lindstrom | 36579d3 | 2001-01-29 07:39:26 +0000 | [diff] [blame] | 2 | |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 3 | /* |
| 4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
| 5 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
| 6 | * All rights reserved |
| 7 | * |
| 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". |
| 13 | */ |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 14 | |
Darren Tucker | e608ca2 | 2004-05-13 16:15:47 +1000 | [diff] [blame] | 15 | /* misc.c */ |
| 16 | |
Kevin Steves | d009ae3 | 2001-07-04 17:25:54 +0000 | [diff] [blame] | 17 | char *chop(char *); |
| 18 | char *strdelim(char **); |
Damien Miller | 232711f | 2004-06-15 10:35:30 +1000 | [diff] [blame] | 19 | int set_nonblock(int); |
| 20 | int unset_nonblock(int); |
Damien Miller | 398e1cf | 2002-02-05 11:52:13 +1100 | [diff] [blame] | 21 | void set_nodelay(int); |
Kevin Steves | d009ae3 | 2001-07-04 17:25:54 +0000 | [diff] [blame] | 22 | int a2port(const char *); |
| 23 | char *cleanhostname(char *); |
| 24 | char *colon(char *); |
| 25 | long convtime(const char *); |
| 26 | |
| 27 | struct passwd *pwcopy(struct passwd *); |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 28 | |
Ben Lindstrom | 387c472 | 2001-05-08 20:27:25 +0000 | [diff] [blame] | 29 | typedef struct arglist arglist; |
| 30 | struct arglist { |
Ben Lindstrom | 6328ab3 | 2002-03-22 02:54:23 +0000 | [diff] [blame] | 31 | char **list; |
Darren Tucker | c7a6fc4 | 2004-08-13 21:18:00 +1000 | [diff] [blame] | 32 | u_int num; |
| 33 | u_int nalloc; |
Ben Lindstrom | 387c472 | 2001-05-08 20:27:25 +0000 | [diff] [blame] | 34 | }; |
Kevin Steves | d009ae3 | 2001-07-04 17:25:54 +0000 | [diff] [blame] | 35 | void addargs(arglist *, char *, ...) __attribute__((format(printf, 2, 3))); |
Darren Tucker | 06f2bd8 | 2004-05-13 16:06:46 +1000 | [diff] [blame] | 36 | |
Darren Tucker | e608ca2 | 2004-05-13 16:15:47 +1000 | [diff] [blame] | 37 | /* tildexpand.c */ |
| 38 | |
Darren Tucker | 06f2bd8 | 2004-05-13 16:06:46 +1000 | [diff] [blame] | 39 | char *tilde_expand_filename(const char *, uid_t); |
Darren Tucker | e608ca2 | 2004-05-13 16:15:47 +1000 | [diff] [blame] | 40 | |
| 41 | /* readpass.c */ |
| 42 | |
| 43 | #define RP_ECHO 0x0001 |
| 44 | #define RP_ALLOW_STDIN 0x0002 |
| 45 | #define RP_ALLOW_EOF 0x0004 |
Damien Miller | 23f0770 | 2004-06-18 01:19:03 +1000 | [diff] [blame] | 46 | #define RP_USE_ASKPASS 0x0008 |
Darren Tucker | e608ca2 | 2004-05-13 16:15:47 +1000 | [diff] [blame] | 47 | |
| 48 | char *read_passphrase(const char *, int); |