19 lines
286 B
C
19 lines
286 B
C
|
|
|
|
/**
|
|
* Note can be cast to
|
|
* WSABUF[http://msdn.microsoft.com/en-us/library/ms741542(v=vs.85).aspx]
|
|
*/
|
|
typedef struct _ol_buf {
|
|
u_long len;
|
|
char* buf;
|
|
_ol_buf* next;
|
|
_ol_buf* prev;
|
|
} ol_buf;
|
|
|
|
|
|
typedef struct {
|
|
OVERLAPPED overlapped;
|
|
ngx_queue_t queue;
|
|
} ol_req_private;
|