uFTP/library/auth.h
2023-06-20 13:06:57 -07:00

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_ */