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
|
#ifndef KSOCKET_BERKELEY_H
#define KSOCKET_BERKELEY_H 1
#ifdef BUILD_USERMODE
#error "This file should only be included if building for kernel mode! Include <ksocket/ksocket.hpp> wrapper instead."
#endif
#include <ntddk.h>
#include <ksocket/wsk.h>
#define socket socket_connection
#ifdef __cplusplus
extern "C" {
#endif
typedef int socklen_t;
typedef intptr_t ssize_t;
int getaddrinfo(const char *node, const char *service,
const struct addrinfo *hints, struct addrinfo **res);
void freeaddrinfo(struct addrinfo *res);
int socket_connection(int domain, int type, int protocol);
int socket_listen(int domain, int type, int protocol);
int socket_datagram(int domain, int type, int protocol);
int connect(int sockfd, const struct sockaddr *addr, socklen_t addrlen);
int listen(int sockfd, int backlog);
int bind(int sockfd, const struct sockaddr *addr, socklen_t addrlen);
int accept(int sockfd, struct sockaddr *addr, socklen_t *addrlen);
int send(int sockfd, const void *buf, size_t len, int flags);
int sendto(int sockfd, const void *buf, size_t len, int flags,
const struct sockaddr *dest_addr, socklen_t addrlen);
int recv(int sockfd, void *buf, size_t len, int flags);
int recvfrom(int sockfd, void *buf, size_t len, int flags,
struct sockaddr *src_addr, socklen_t *addrlen);
int closesocket(int sockfd);
#ifdef __cplusplus
}
#endif
#endif
|