summaryrefslogtreecommitdiff
path: root/login.h
diff options
context:
space:
mode:
Diffstat (limited to 'login.h')
-rw-r--r--login.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/login.h b/login.h
index e49643d..2ea4e17 100644
--- a/login.h
+++ b/login.h
@@ -4,16 +4,13 @@
#include "request.h"
static inline void login(const char *username, const char *password, const char *verify, const char *click,
- const char *successpage, const char *nextpage, const char *failpage, void (*handler)(icclient_fetch_t *), void *user)
+ void (*handler)(icclient_fetch_t *), void *user)
{
- request(handler, user, &(struct body){ 7, {
+ request(handler, user, &(struct body){ 4, {
{ "mv_username", username },
{ "mv_password", password },
{ "mv_verify", verify },
{ "mv_click", click },
- { "mv_successpage", successpage },
- { "mv_nextpage", nextpage },
- { "mv_failpage", failpage }
}}, "%s", "process");
}