17 lines
324 B
C
17 lines
324 B
C
|
/*
|
||
|
This software is licensed under GPL-3, as shown in the file LICENSE
|
||
|
Author: Linux Gruppe IRB
|
||
|
Copyright: Linux Gruppe IRB, 2024
|
||
|
*/
|
||
|
|
||
|
#ifndef _AUTH_H
|
||
|
#define _AUTH_H
|
||
|
|
||
|
#include <security/pam_modules.h>
|
||
|
#include <curl/curl.h>
|
||
|
#include <pwd.h>
|
||
|
|
||
|
int auth(pam_handle_t *pamh, struct passwd *passwd, CURL *curl);
|
||
|
|
||
|
#endif
|