2004-06-17 17:19:03 +02:00
|
|
|
/* $OpenBSD: misc.h,v 1.16 2004/06/17 15:10:14 djm Exp $ */
|
2001-01-29 08:39:26 +01:00
|
|
|
|
2001-01-22 06:34:40 +01:00
|
|
|
/*
|
|
|
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
|
|
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
|
|
|
* All rights reserved
|
|
|
|
*
|
|
|
|
* As far as I am concerned, the code I have written for this software
|
|
|
|
* can be used freely for any purpose. Any derived versions of this
|
|
|
|
* software must be clearly marked as such, and if the derived work is
|
|
|
|
* incompatible with the protocol description in the RFC file, it must be
|
|
|
|
* called by a name other than "ssh" or "Secure Shell".
|
|
|
|
*/
|
|
|
|
|
2004-05-13 08:15:47 +02:00
|
|
|
/* misc.c */
|
|
|
|
|
2001-07-04 19:25:54 +02:00
|
|
|
char *chop(char *);
|
|
|
|
char *strdelim(char **);
|
2004-06-15 02:35:30 +02:00
|
|
|
int set_nonblock(int);
|
|
|
|
int unset_nonblock(int);
|
2002-02-05 01:52:13 +01:00
|
|
|
void set_nodelay(int);
|
2001-07-04 19:25:54 +02:00
|
|
|
int a2port(const char *);
|
|
|
|
char *cleanhostname(char *);
|
|
|
|
char *colon(char *);
|
|
|
|
long convtime(const char *);
|
|
|
|
|
|
|
|
struct passwd *pwcopy(struct passwd *);
|
2001-01-22 06:34:40 +01:00
|
|
|
|
2001-05-08 22:27:25 +02:00
|
|
|
typedef struct arglist arglist;
|
|
|
|
struct arglist {
|
2002-03-22 03:54:23 +01:00
|
|
|
char **list;
|
|
|
|
int num;
|
|
|
|
int nalloc;
|
2001-05-08 22:27:25 +02:00
|
|
|
};
|
2001-07-04 19:25:54 +02:00
|
|
|
void addargs(arglist *, char *, ...) __attribute__((format(printf, 2, 3)));
|
2004-05-13 08:06:46 +02:00
|
|
|
|
2004-05-13 08:15:47 +02:00
|
|
|
/* tildexpand.c */
|
|
|
|
|
2004-05-13 08:06:46 +02:00
|
|
|
char *tilde_expand_filename(const char *, uid_t);
|
2004-05-13 08:15:47 +02:00
|
|
|
|
|
|
|
/* readpass.c */
|
|
|
|
|
|
|
|
#define RP_ECHO 0x0001
|
|
|
|
#define RP_ALLOW_STDIN 0x0002
|
|
|
|
#define RP_ALLOW_EOF 0x0004
|
2004-06-17 17:19:03 +02:00
|
|
|
#define RP_USE_ASKPASS 0x0008
|
2004-05-13 08:15:47 +02:00
|
|
|
|
|
|
|
char *read_passphrase(const char *, int);
|