From 4c00d748c3c86cbb5039660c2a5bebac0c826386 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=A6=8C=20=EA=A6=AB=EA=A6=B6=20=EA=A6=8F=EA=A7=80?= =?UTF-8?q?=EA=A6=A6=EA=A6=BF=20=EA=A6=A7=20=EA=A6=AE=20=EA=A6=91=20?= =?UTF-8?q?=EA=A6=A9=20=EA=A6=AD=EA=A7=80?= Date: Sun, 29 Dec 2019 08:36:39 +0800 Subject: Add parameters for handler and user pointers to login related functions. These are the cURL write function and data respectively. --- admin.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'admin.c') diff --git a/admin.c b/admin.c index 60bf583..6e40ddd 100644 --- a/admin.c +++ b/admin.c @@ -1,11 +1,15 @@ #include "login.h" #include "icclient/admin.h" -void icclient_admin_login(const char *username, const char *password +void icclient_admin_login(size_t (*handler)(void *contents, size_t size + , size_t nmemb, void *userdata) + , struct icclient_user *user + , const char *username, const char *password , const char *successpage, const char *nextpage , const char *failpage) { - login(username, password, NULL, "MMLogin", successpage, nextpage, failpage); + login(handler, user, username, password, NULL, "MMLogin", successpage + , nextpage, failpage); } void icclient_admin_logout() -- cgit v1.2.3