0
0
mirror of https://github.com/hufrea/byedpi.git synced 2025-06-29 18:21:14 +00:00
byedpi/conev.h
2025-06-16 10:37:00 +03:00

149 lines
3.0 KiB
C

#ifndef CONEV_H
#define CONEV_H
#include <stdint.h>
#include <stdbool.h>
#include "params.h"
#ifndef __linux__
#define NOEPOLL
#endif
#ifdef _WIN32
#include <ws2tcpip.h>
#define poll(fds, cnt, to) WSAPoll(fds, cnt, to)
#define close(fd) closesocket(fd)
#else
#include <netinet/in.h>
#include <sys/socket.h>
#include <unistd.h>
#include <time.h>
#include <sys/mman.h>
#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>
#endif
#endif
#ifdef __APPLE__
#define _POLLDEF POLLHUP
#else
#define _POLLDEF 0
#endif
#ifndef POLLRDHUP
#define POLLRDHUP 0
#endif
#define POLLTIMEOUT 0
#define MAX_BUFF_INP 8
struct poolhd;
struct eval;
typedef int (*evcb_t)(struct poolhd *, struct eval *, int);
#define FLAG_S4 1
#define FLAG_S5 2
#define FLAG_CONN 4
#define FLAG_HTTP 8
struct buffer {
size_t size;
unsigned int offset;
ssize_t lock;
struct buffer *next;
char data[];
};
struct eval {
int fd;
int index;
unsigned long long mod_iter;
evcb_t cb;
long tv_ms;
struct eval *tv_next, *tv_prev;
struct eval *pair;
struct buffer *buff, *sq_buff;
int flag;
union sockaddr_u addr;
char *host;
int host_len;
ssize_t recv_count;
ssize_t round_sent;
unsigned int round_count;
struct desync_params *dp;
bool mark; //
bool restore_ttl;
bool restore_md5;
char *restore_fake;
size_t restore_fake_len;
const char *restore_orig;
size_t restore_orig_len;
unsigned int part_sent;
};
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
unsigned long long iters;
bool brk;
struct eval *tv_start, *tv_end;
struct buffer *root_buff;
int buff_count;
};
struct poolhd *init_pool(int count);
struct eval *add_event(struct poolhd *pool, evcb_t cb, 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 ms);
int mod_etype(struct poolhd *pool, struct eval *val, int type);
void set_timer(struct poolhd *pool, struct eval *val, long ms);
void remove_timer(struct poolhd *pool, struct eval *val);
void loop_event(struct poolhd *pool);
struct buffer *buff_pop(struct poolhd *pool, size_t size);
void buff_push(struct poolhd *pool, struct buffer *buff);
void buff_destroy(struct buffer *root);
static struct buffer *buff_ppop(struct poolhd *pool, size_t size)
{
struct buffer *b = buff_pop(pool, size);
if (b) buff_push(pool, b);
return b;
}
#endif