pam-eid/client.h

23 lines
351 B
C
Raw Permalink Normal View History

2024-10-29 13:39:15 +01:00
/*
This software is licensed under GPL-3, as shown in the file LICENSE
Author: Linux Gruppe IRB
Copyright: Linux Gruppe IRB, 2024
*/
#ifndef _CLIENT_H
#define _CLIENT_H
#include <curl/curl.h>
struct memory {
char *response;
size_t size;
};
extern char errbuf[CURL_ERROR_SIZE];
extern int port;
char *eidResponse(CURL *curl);
#endif