From 3bd3f432a95da405634cdbd2a662d79a3a5ba7af Mon Sep 17 00:00:00 2001 From: Christian Segundo Date: Sun, 11 Jun 2023 22:09:15 +0200 Subject: wip --- xmission.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 xmission.h (limited to 'xmission.h') diff --git a/xmission.h b/xmission.h new file mode 100644 index 0000000..be1d8d7 --- /dev/null +++ b/xmission.h @@ -0,0 +1,20 @@ +#ifndef _XMISSION_H + +#define _XMISSION_H +#include +#include +#include + +typedef void *c_client; + +typedef struct ClientOptions { + char *host; + uint16_t port; + bool https; + char *user; + char *passowrd; +} ClientOptions_t; + +c_client c_client_init(ClientOptions_t opts); +void c_client_deinit(c_client); +#endif -- cgit v1.2.3