byedpi/conev.h

89 lines
1.5 KiB
C
Raw Normal View History

2023-06-03 19:52:10 +00:00
#include <stdint.h>
#include <netinet/in.h>
#ifndef __linux__
#define NOEPOLL
#endif
#ifndef NOEPOLL
#include <sys/epoll.h>
#define POLLIN EPOLLIN
#define POLLOUT EPOLLOUT
#define POLLERR EPOLLERR
#define POLLHUP EPOLLHUP
#define POLLRDHUP EPOLLRDHUP
#else
#include <sys/poll.h>
#ifndef POLLRDHUP
#define POLLRDHUP POLLHUP
#endif
#endif
enum eid {
EV_ACCEPT,
EV_REQUEST,
EV_CONNECT,
EV_IGNORE,
2023-07-06 18:21:44 +00:00
EV_TUNNEL,
EV_UDP_TUNNEL
2023-06-03 19:52:10 +00:00
};
2023-07-05 08:33:07 +00:00
#define FLAG_S4 1
#define FLAG_S5 2
#define FLAG_CONN 4
2023-06-03 19:52:10 +00:00
#ifndef CONEV_H
char *eid_name[] = {
"EV_ACCEPT",
"EV_REQUEST",
"EV_CONNECT",
"EV_IGNORE",
2023-07-06 18:21:44 +00:00
"EV_TUNNEL",
"EV_UDP_TUNNEL"
2023-06-03 19:52:10 +00:00
};
#endif
struct eval {
int fd;
int index;
enum eid type;
struct eval *pair;
2023-07-03 17:59:39 +00:00
char *tmpbuf;
ssize_t size;
int offset;
2023-06-03 19:52:10 +00:00
int flag;
2023-07-07 13:26:04 +00:00
union {
struct sockaddr_in in;
struct sockaddr_in6 in6;
};
2023-06-03 19:52:10 +00:00
#ifndef NOEPOLL
uint32_t events;
#endif
};
struct poolhd {
int max;
int count;
int efd;
struct eval **links;
struct eval *items;
#ifndef NOEPOLL
struct epoll_event *pevents;
#else
struct pollfd *pevents;
#endif
};
struct poolhd *init_pool(int count);
struct eval *add_event(struct poolhd *pool, enum eid type, int fd, int e);
struct eval *add_pair(struct poolhd *pool, struct eval *val, int sfd, int e);
void del_event(struct poolhd *pool, struct eval *val);
void destroy_pool(struct poolhd *pool);
struct eval *next_event(struct poolhd *pool, int *offs, int *type);
int mod_etype(struct poolhd *pool, struct eval *val, int type, char rm);