1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00

patch superseded by mike

This commit is contained in:
Rick V 2019-01-03 21:00:07 -06:00
parent e083bb0e22
commit 1a56265f69
No known key found for this signature in database
GPG key ID: C0EDC8723FDC3465

View file

@ -25,15 +25,15 @@ struct asio_evt_pkt
};
struct win32_tun_io;
extern "C" DWORD FAR PASCAL
tun_ev_loop(void* unused);
// list of TUN listeners (useful for exits or other nodes with multiple TUNs)
std::list< win32_tun_io* > tun_listeners;
// a single event queue for the TUN interface
HANDLE tun_event_queue =
INVALID_HANDLE_VALUE; // we pass this to the event loop thread procedure
// upon setup
HANDLE tun_event_queue = INVALID_HANDLE_VALUE;
// we hand the kernel our thread handles to process completion events
HANDLE* kThreadPool;