summaryrefslogtreecommitdiff
path: root/login.h
diff options
context:
space:
mode:
Diffstat (limited to 'login.h')
-rw-r--r--login.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/login.h b/login.h
index acabf85..856c2d2 100644
--- a/login.h
+++ b/login.h
@@ -4,15 +4,17 @@
#include "request.h"
static inline void login(const char *username, const char *password,
- const char *verify, const char *click, const char *failpage,
- void (*handler)(interchange_response *),
+ const char *verify, const char *click, const char *nextpage,
+ const char *failpage, void (*handler)(interchange_response *),
void (*callback)(void *))
{
- request(handler, callback, &(struct body){ 4 + (failpage ? 1 : 0), {
+ request(handler, callback, &(struct body){ 4 + (nextpage ? 1 : 0)
+ + (failpage ? 1 : 0), {
{ "mv_username", username },
{ "mv_password", password },
{ "mv_verify", verify },
{ "mv_click", click },
+ { "mv_nextpage", nextpage },
{ "mv_failpage", failpage },
}}, "%s", "process");
}