mirror of
https://github.com/kingk85/uFTP.git
synced 2025-04-24 10:28:38 +03:00
20 lines
383 B
C
Executable File
20 lines
383 B
C
Executable File
/*
|
|
* auth.h
|
|
*
|
|
* Created on: 30 dic 2018
|
|
* Author: ugo
|
|
*/
|
|
|
|
#ifndef LIBRARY_AUTH_H_
|
|
#define LIBRARY_AUTH_H_
|
|
|
|
#ifdef PAM_SUPPORT_ENABLED
|
|
|
|
#include "ftpData.h"
|
|
|
|
void loginCheck(char *name, char *password, loginDataType *login, DYNMEM_MemoryTable_DataType **memoryTable);
|
|
int authenticateSystem(const char *username, const char *password);
|
|
#endif
|
|
|
|
#endif /* LIBRARY_AUTH_H_ */
|