summaryrefslogtreecommitdiffstats
path: root/client.h
blob: 2cc80902d93f48931edc85ed2bfb3f6c33ebe2d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _CLIENT_H_
#define _CLIENT_H_

#include "types.h"

void client_free(epoll_client_t *client);

void client_callback(void *data, int haveIn, int haveOut, int doCleanup);

BOOL client_send(epoll_client_t *client, const char *buffer, size_t len, const BOOL cork);

#endif