2023-02-08 13:17:09 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2002-12-13 21:15:29 +01:00
|
|
|
/* User authentication for vtysh.
|
|
|
|
* Copyright (C) 2000 Kunihiro Ishiguro
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _VTYSH_USER_H
|
|
|
|
#define _VTYSH_USER_H
|
|
|
|
|
2015-03-04 07:07:01 +01:00
|
|
|
int vtysh_auth(void);
|
|
|
|
void vtysh_user_init(void);
|
2015-07-26 00:55:47 +02:00
|
|
|
void user_config_write(void);
|
2002-12-13 21:15:29 +01:00
|
|
|
|
2016-01-13 19:49:50 +01:00
|
|
|
char *vtysh_get_home(void);
|
|
|
|
|
2002-12-13 21:15:29 +01:00
|
|
|
#endif /* _VTYSH_USER_H */
|