forked from hufrea/byedpi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextend.h
31 lines (21 loc) · 755 Bytes
/
extend.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef EXTEND_H
#define EXTEND_H
#include <stddef.h>
#include "proxy.h"
int socket_mod(int fd);
int connect_hook(struct poolhd *pool, struct eval *val,
const union sockaddr_u *dst, int next);
ssize_t tcp_send_hook(struct eval *val,
char *buffer, size_t bfsize, ssize_t n);
ssize_t tcp_recv_hook(struct poolhd *pool, struct eval *val,
char *buffer, size_t bfsize);
ssize_t udp_hook(struct eval *val,
char *buffer, ssize_t n, const union sockaddr_u *dst);
int on_first_tunnel(struct poolhd *pool,
struct eval *val, char *buffer, size_t bfsize, int etype);
#ifdef __linux__
static int protect(int conn_fd, const char *path);
#else
#define protect(fd, path) 0
#endif
#endif