2011-03-23 12:56:06 +00:00
|
|
|
|
2011-03-30 03:03:56 +00:00
|
|
|
#include <winsock2.h>
|
|
|
|
|
#include <mswsock.h>
|
|
|
|
|
#include <ws2tcpip.h>
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
2011-03-23 12:56:06 +00:00
|
|
|
|
|
|
|
|
/**
|
2011-03-30 03:03:56 +00:00
|
|
|
* It should be possible to cast ol_buf[] to WSABUF[]
|
|
|
|
|
* see http://msdn.microsoft.com/en-us/library/ms741542(v=vs.85).aspx
|
2011-03-23 12:56:06 +00:00
|
|
|
*/
|
|
|
|
|
typedef struct _ol_buf {
|
2011-03-30 03:03:56 +00:00
|
|
|
ULONG len;
|
|
|
|
|
char* base;
|
2011-03-23 12:56:06 +00:00
|
|
|
} ol_buf;
|
2011-03-28 08:55:29 +00:00
|
|
|
|
2011-04-07 02:51:59 +00:00
|
|
|
struct ol_req_s {
|
|
|
|
|
struct ol_req_shared_s;
|
2011-03-28 08:55:29 +00:00
|
|
|
OVERLAPPED overlapped;
|
2011-03-30 05:19:17 +00:00
|
|
|
int flags;
|
2011-04-07 02:51:59 +00:00
|
|
|
};
|
2011-03-30 03:03:56 +00:00
|
|
|
|
|
|
|
|
typedef struct {
|
2011-04-07 02:51:59 +00:00
|
|
|
ol_req req;
|
|
|
|
|
SOCKET socket;
|
|
|
|
|
|
|
|
|
|
/* AcceptEx specifies that the buffer must be big enough to at least hold */
|
|
|
|
|
/* two socket addresses plus 32 bytes. */
|
|
|
|
|
char buffer[sizeof(struct sockaddr_storage) * 2 + 32];
|
|
|
|
|
} ol_accept_data;
|
|
|
|
|
|
|
|
|
|
struct ol_handle_s {
|
|
|
|
|
struct ol_handle_shared_s;
|
2011-03-30 03:03:56 +00:00
|
|
|
union {
|
|
|
|
|
SOCKET socket;
|
|
|
|
|
HANDLE handle;
|
|
|
|
|
};
|
2011-04-07 02:51:59 +00:00
|
|
|
ol_accept_data *accept_data;
|
2011-04-04 23:41:53 +00:00
|
|
|
unsigned int flags;
|
|
|
|
|
unsigned int reqs_pending;
|
|
|
|
|
ol_err error;
|
2011-04-07 02:51:59 +00:00
|
|
|
};
|