summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/shell/login.h
blob: 3e107825d4dd7d5fd46d3ef6e711e47231c0b59f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/**
 * @file
 *
 * @author Sebastian Huber <sebastian.huber@embedded-brains.de>
 *
 * @brief Login types and functions.
 */

/*
 * Copyright (c) 2009
 * embedded brains GmbH
 * Obere Lagerstr. 30
 * D-82178 Puchheim
 * Germany
 * <rtems@embedded-brains.de>
 *
 * Based on work from Chris Johns, Fernando Ruiz and Till Straumann.
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rtems.com/license/LICENSE.
 */

#ifndef RTEMS_LOGIN_H
#define RTEMS_LOGIN_H

#include <stdio.h>

#include <rtems.h>

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */

typedef bool (*rtems_login_check)(
  const char * /* user */,
  const char * /* passphrase */
);

bool rtems_shell_login_prompt(
  FILE *in,
  FILE *out,
  const char *device,
  rtems_login_check check
);

bool rtems_shell_login_check(
  const char *user,
  const char *passphrase
);

#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif /* RTEMS_LOGIN_H */