]> andersk Git - gssapi-openssh.git/blame - openssh/misc.h
Import of OpenSSH 4.2p1
[gssapi-openssh.git] / openssh / misc.h
CommitLineData
665a873d 1/* $OpenBSD: misc.h,v 1.25 2005/07/14 04:00:43 dtucker Exp $ */
3c0ef626 2
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 */
14
c9f39d2c 15/* misc.c */
16
3c0ef626 17char *chop(char *);
18char *strdelim(char **);
c9f39d2c 19int set_nonblock(int);
20int unset_nonblock(int);
e9a17296 21void set_nodelay(int);
3c0ef626 22int a2port(const char *);
996d5e62 23char *hpdelim(char **);
3c0ef626 24char *cleanhostname(char *);
25char *colon(char *);
26long convtime(const char *);
665a873d 27char *tilde_expand_filename(const char *, uid_t);
28char *percent_expand(const char *, ...) __attribute__((__sentinel__));
29char *tohex(const u_char *, u_int);
3c0ef626 30
31struct passwd *pwcopy(struct passwd *);
32
33typedef struct arglist arglist;
34struct arglist {
700318f3 35 char **list;
c9f39d2c 36 u_int num;
37 u_int nalloc;
3c0ef626 38};
39void addargs(arglist *, char *, ...) __attribute__((format(printf, 2, 3)));
c9f39d2c 40
c9f39d2c 41/* readpass.c */
42
43#define RP_ECHO 0x0001
44#define RP_ALLOW_STDIN 0x0002
45#define RP_ALLOW_EOF 0x0004
46#define RP_USE_ASKPASS 0x0008
47
48char *read_passphrase(const char *, int);
996d5e62 49int ask_permission(const char *, ...) __attribute__((format(printf, 1, 2)));
50int read_keyfile_line(FILE *, const char *, char *, size_t, u_long *);
This page took 0.055797 seconds and 5 git commands to generate.