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