forked from zorxx/microhttpd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.h
More file actions
16 lines (13 loc) · 683 Bytes
/
client.h
File metadata and controls
16 lines (13 loc) · 683 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*! \copyright 2018 Zorxx Software. All rights reserved.
* \license This file is released under the MIT License. See the LICENSE file for details.
* \file client.h
* \brief microhttpd client interface
*/
#ifndef _MICROHTTPD_CLIENT_H
#define _MICROHTTPD_CLIENT_H
#include "microhttpd_private.h"
int microhttpd_NewClient(struct md_context *ctx, int nSocket, struct sockaddr_in *socket_info);
int microhttpd_RemoveClient(struct md_context *ctx, struct md_client *client);
int microhttpd_HandleClientReceive(struct md_context *ctx, struct md_client *client);
int microhttpd_HandleClientError(struct md_context *ctx, struct md_client *client);
#endif /* _MICROHTTPD_CLIENT_H */