summaryrefslogtreecommitdiff
path: root/login.h
blob: dc0bc63467c9f230a7509b2c1cf5de8163b157ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef ICCLIENT_LOGIN_H
#define ICCLIENT_LOGIN_H

#include "request.h"

static inline void login(const char *username, const char *password, const char *verify, const char *click,
		void (*handler)(icclient_response *), void (*callback)(void *))
{
	request(handler, callback, &(struct body){ 4, {
			{ "mv_username", username },
			{ "mv_password", password },
			{ "mv_verify", verify },
			{ "mv_click", click },
			}}, "%s", "process");
}

#endif