1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-09 00:00:04 +01:00

windows: pipe role does not use file handle any more

This commit is contained in:
Mykola Stryebkov 2021-04-04 17:01:32 +01:00 committed by Andy Green
parent 7f8e2edc3d
commit 3c334d4906

View file

@ -148,5 +148,9 @@ const struct lws_role_ops role_ops_pipe = {
/* close cb clnt, srv */ { 0, 0 },
/* protocol_bind_cb c,s */ { 0, 0 },
/* protocol_unbind_cb c,s */ { 0, 0 },
#if defined(WIN32)
/* file_handle (no, UDP) */ 0,
#else
/* file_handle */ 1,
#endif
};