summaryrefslogtreecommitdiff
path: root/client.c
diff options
context:
space:
mode:
Diffstat (limited to 'client.c')
-rw-r--r--client.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/client.c b/client.c
index 9a3857c..61ed428 100644
--- a/client.c
+++ b/client.c
@@ -1,8 +1,11 @@
#include <stdbool.h>
#include <stdlib.h>
#include "login.h"
+#include "icclient/product.h"
#include "icclient/client.h"
+typedef struct icclient_catalog icclient_catalog;
+
CURL *curl = NULL;
char *server_url = NULL;
@@ -29,6 +32,12 @@ bool icclient_init(const char *url, const char *certificate)
return (bool)curl;
}
+void icclient_allproducts(icclient_catalog **catalogptr
+ , size_t (*callback)(void *, size_t, size_t, void *))
+{
+ request(NULL, NULL, NULL, "%s", "All-Products");
+}
+
void icclient_newaccount(const char *username, const char *password
, const char *verify, const char *successpage, const char *nextpage
, const char *failpage)