2011-03-23 12:56:06 +00:00
|
|
|
|
2011-04-12 18:39:14 +00:00
|
|
|
#include <stdint.h>
|
2011-03-30 03:03:56 +00:00
|
|
|
#include <winsock2.h>
|
|
|
|
|
#include <mswsock.h>
|
|
|
|
|
#include <ws2tcpip.h>
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
2011-04-12 18:39:14 +00:00
|
|
|
#include "tree.h"
|
|
|
|
|
|
2011-03-23 12:56:06 +00:00
|
|
|
|
|
|
|
|
/**
|
2011-04-07 09:02:54 +00:00
|
|
|
* It should be possible to cast oio_buf[] to WSABUF[]
|
2011-03-30 03:03:56 +00:00
|
|
|
* see http://msdn.microsoft.com/en-us/library/ms741542(v=vs.85).aspx
|
2011-03-23 12:56:06 +00:00
|
|
|
*/
|
2011-04-07 09:02:54 +00:00
|
|
|
typedef struct oio_buf {
|
2011-03-30 03:03:56 +00:00
|
|
|
ULONG len;
|
|
|
|
|
char* base;
|
2011-04-07 09:02:54 +00:00
|
|
|
} oio_buf;
|
2011-03-28 08:55:29 +00:00
|
|
|
|
2011-04-14 20:34:13 +00:00
|
|
|
#define oio_req_private_fields \
|
|
|
|
|
union { \
|
|
|
|
|
/* Used by I/O operations */ \
|
|
|
|
|
OVERLAPPED overlapped; \
|
|
|
|
|
/* Used by timers */ \
|
|
|
|
|
struct { \
|
|
|
|
|
RB_ENTRY(oio_req_s) tree_entry; \
|
|
|
|
|
int64_t due; \
|
|
|
|
|
}; \
|
|
|
|
|
}; \
|
2011-03-30 05:19:17 +00:00
|
|
|
int flags;
|
2011-03-30 03:03:56 +00:00
|
|
|
|
2011-04-14 20:34:13 +00:00
|
|
|
#define oio_handle_private_fields \
|
|
|
|
|
union { \
|
|
|
|
|
SOCKET socket; \
|
|
|
|
|
HANDLE handle; \
|
|
|
|
|
}; \
|
|
|
|
|
SOCKET accepted_socket; \
|
|
|
|
|
struct oio_accept_req_s* accept_reqs; \
|
|
|
|
|
unsigned int flags; \
|
|
|
|
|
unsigned int reqs_pending; \
|
2011-04-07 09:02:54 +00:00
|
|
|
oio_err error;
|