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

Annotation of src/usr.bin/ssh/cli.h, Revision 1.1

1.1     ! markus      1: #ifndef CLI_H
        !             2: #define CLI_H
        !             3:
        !             4: /*
        !             5:  * Presents a prompt and returns the response allocated with xmalloc().
        !             6:  * Uses /dev/tty or stdin/out depending on arg.  Optionally disables echo
        !             7:  * of response depending on arg.  Tries to ensure that no other userland
        !             8:  * buffer is storing the response.
        !             9:  */
        !            10: char*  cli_read_passphrase(char* prompt, int from_stdin, int echo_enable);
        !            11: char*  cli_prompt(char* prompt, int echo_enable);
        !            12: void   cli_mesg(char* mesg);
        !            13:
        !            14: #endif /* CLI_H */