1
0
mirror of https://github.com/SuperBFG7/ympd synced 2024-06-13 16:56:50 +00:00
ympd/src/http_server.h

16 lines
321 B
C

#ifndef __HTTP_SERVER_H__
#define __HTTP_SERVER_H__
#include <libwebsockets.h>
struct per_session_data__http {
int fd;
};
int callback_http(struct libwebsocket_context *context,
struct libwebsocket *wsi,
enum libwebsocket_callback_reasons reason, void *user,
void *in, size_t len);
#endif