diff options
Diffstat (limited to 'login.h')
-rw-r--r-- | login.h | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -3,14 +3,17 @@ #include "request.h" -static inline void login(const char *username, const char *password, const char *verify, const char *click, - void (*handler)(interchange_response *), void (*callback)(void *)) +static inline void login(const char *username, const char *password, + const char *verify, const char *click, const char *failpage, + void (*handler)(interchange_response *), + void (*callback)(void *)) { - request(handler, callback, &(struct body){ 4, { + request(handler, callback, &(struct body){ 4 + (failpage ? 1 : 0), { { "mv_username", username }, { "mv_password", password }, { "mv_verify", verify }, { "mv_click", click }, + { "mv_failpage", failpage }, }}, "%s", "process"); } |