From c4244b7286dc0b0ac5ba8e0d5ad425a250c68892 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=A6=8C=EA=A6=AB=EA=A6=B6=EA=A6=8F=EA=A7=80=EA=A6=A6?= =?UTF-8?q?=EA=A6=BF=EA=A6=A7=EA=A6=AE=EA=A6=91=EA=A6=A9=EA=A6=AD=EA=A7=80?= Date: Wed, 8 Mar 2023 17:58:59 +0800 Subject: Interface for setting login next page --- login.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'login.h') 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"); } -- cgit v1.2.3