]> andersk Git - openssh.git/blame - misc.h
- jmc@cvs.openbsd.org 2005/12/08 15:06:29
[openssh.git] / misc.h
CommitLineData
d20f3c9e 1/* $OpenBSD: misc.h,v 1.27 2005/12/06 22:38:27 reyk Exp $ */
23c2a7a5 2
42f11eb2 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 */
42f11eb2 14
58ae9cb8 15/* misc.c */
16
ac96ca42 17char *chop(char *);
18char *strdelim(char **);
170694d7 19int set_nonblock(int);
20int unset_nonblock(int);
bcc0381e 21void set_nodelay(int);
ac96ca42 22int a2port(const char *);
d20f3c9e 23int a2tun(const char *, int *);
3867aa0a 24char *hpdelim(char **);
ac96ca42 25char *cleanhostname(char *);
26char *colon(char *);
27long convtime(const char *);
49e71137 28char *tilde_expand_filename(const char *, uid_t);
8912ae0e 29char *percent_expand(const char *, ...) __attribute__((__sentinel__));
ef07103c 30char *tohex(const u_char *, u_int);
fd6168c1 31void sanitise_stdfd(void);
ac96ca42 32
33struct passwd *pwcopy(struct passwd *);
42f11eb2 34
8a624ebf 35typedef struct arglist arglist;
36struct arglist {
762715ce 37 char **list;
9a995072 38 u_int num;
39 u_int nalloc;
8a624ebf 40};
ac96ca42 41void addargs(arglist *, char *, ...) __attribute__((format(printf, 2, 3)));
07d80252 42
58ae9cb8 43/* readpass.c */
44
45#define RP_ECHO 0x0001
46#define RP_ALLOW_STDIN 0x0002
47#define RP_ALLOW_EOF 0x0004
0d34d6ce 48#define RP_USE_ASKPASS 0x0008
58ae9cb8 49
50char *read_passphrase(const char *, int);
7a9c7a0b 51int ask_permission(const char *, ...) __attribute__((format(printf, 1, 2)));
41feb690 52int read_keyfile_line(FILE *, const char *, char *, size_t, u_long *);
d20f3c9e 53int tun_open(int);
This page took 4.7199 seconds and 5 git commands to generate.