diff options
| author | Garrett D'Amore <garrett@damore.org> | 2017-01-15 13:59:54 -0800 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2017-01-15 13:59:54 -0800 |
| commit | 8eddc85dc9f621df44b85bf0769a1449109170ce (patch) | |
| tree | b2249a7152cb4413f9e871a26239283c1ae033df /src/platform/windows/win_impl.h | |
| parent | 2eace190e7715e6c48f33897acf7537576f7a412 (diff) | |
| download | nng-8eddc85dc9f621df44b85bf0769a1449109170ce.tar.gz nng-8eddc85dc9f621df44b85bf0769a1449109170ce.tar.bz2 nng-8eddc85dc9f621df44b85bf0769a1449109170ce.zip | |
Windows IPC works now.
Diffstat (limited to 'src/platform/windows/win_impl.h')
| -rw-r--r-- | src/platform/windows/win_impl.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/platform/windows/win_impl.h b/src/platform/windows/win_impl.h index f675f510..c3afef91 100644 --- a/src/platform/windows/win_impl.h +++ b/src/platform/windows/win_impl.h @@ -40,7 +40,15 @@ struct nni_plat_tcpsock { }; struct nni_plat_ipcsock { - HANDLE p; + HANDLE p; + + char path[256]; + WSAOVERLAPPED recv_olpd; + WSAOVERLAPPED send_olpd; + WSAOVERLAPPED conn_olpd; // Use for both connect and accept + CRITICAL_SECTION cs; + + int server; }; struct nni_plat_thr { |
