diff options
| author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-12-29 08:36:39 +0800 |
|---|---|---|
| committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-12-29 08:36:39 +0800 |
| commit | 4c00d748c3c86cbb5039660c2a5bebac0c826386 (patch) | |
| tree | b83f96a57506561131af1209c4dfedb421a5c3cb /admin.c | |
| parent | 30d862751ce42ecf667d08c360009aca3aacc1f8 (diff) | |
Add parameters for handler and user pointers
to login related functions.
These are the cURL write function and data respectively.
Diffstat (limited to 'admin.c')
| -rw-r--r-- | admin.c | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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() |