[BACK]Return to misc.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Annotation of src/usr.bin/ssh/misc.h, Revision 1.12.8.1

1.12.8.1! brad        1: /*     $OpenBSD: misc.h,v 1.17 2004/08/11 21:43:05 avsm Exp $  */
1.2       niklas      2:
1.1       markus      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:  */
1.10      markus     14:
1.12.8.1! brad       15: /* misc.c */
        !            16:
1.9       itojun     17: char   *chop(char *);
                     18: char   *strdelim(char **);
1.12.8.1! brad       19: int     set_nonblock(int);
        !            20: int     unset_nonblock(int);
1.11      stevesk    21: void    set_nodelay(int);
1.10      markus     22: int     a2port(const char *);
                     23: char   *cleanhostname(char *);
                     24: char   *colon(char *);
                     25: long    convtime(const char *);
1.1       markus     26:
1.10      markus     27: struct passwd *pwcopy(struct passwd *);
1.5       mouring    28:
1.6       mouring    29: typedef struct arglist arglist;
                     30: struct arglist {
1.12      markus     31:        char    **list;
1.12.8.1! brad       32:        u_int   num;
        !            33:        u_int   nalloc;
1.6       mouring    34: };
1.10      markus     35: void    addargs(arglist *, char *, ...) __attribute__((format(printf, 2, 3)));
1.12.8.1! brad       36:
        !            37: /* tildexpand.c */
        !            38:
        !            39: char   *tilde_expand_filename(const char *, uid_t);
        !            40:
        !            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:
        !            48: char   *read_passphrase(const char *, int);