-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin_socket.h
53 lines (35 loc) · 1.03 KB
/
plugin_socket.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//
// Created by thomas.
//
#ifndef UBPF_TOOLS_PLUGIN_SOCKET_H
#define UBPF_TOOLS_PLUGIN_SOCKET_H
#include <stdio.h>
#include "uthash.h"
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
struct file_description {
int our_fd;
UT_hash_handle hh;
int type_fd;
union {
#define fdesc val.fd
#define pt_sk (val.sk_struct)
int fd;
void *sk_struct;
} val;
};
struct file_description *new_file_description(int host_fd, int type_fd);
void rm_file_description(int plugin_fd);
void rm_all_file_descriptions(void);
/* TCP related functions */
int open_tcp(int af, const struct sockaddr *addr, socklen_t addrlen);
int write_tcp(int pfd, const void *buf, size_t len);
int read_tcp(int pfd, void *buf, size_t len);
int close_tcp(int sfd);
/* actual plugin API */
int ctx_open(int protocol, int af, const struct sockaddr *addr, socklen_t len);
int ctx_write(int sfd, const void *buf, size_t len);
int ctx_read(int sfd, void *buf, size_t len);
int ctx_close(int sfd);
#endif //UBPF_TOOLS_PLUGIN_SOCKET_H