You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to poll a REQ socket on Windows 11 with zeromq version 4.3.5, but the poll function never returned the right result (checked with pyzmq). The problem is that zeromq the poll-item file descriptor is unsigned __int64 on 64 bit Windows system, whereas in the nim bindings it's always a cint. When using my own poll-item struct and bindings with uint64 as file descriptor, it works.
I tried to poll a REQ socket on Windows 11 with zeromq version 4.3.5, but the poll function never returned the right result (checked with pyzmq). The problem is that zeromq the poll-item file descriptor is unsigned __int64 on 64 bit Windows system, whereas in the nim bindings it's always a cint. When using my own poll-item struct and bindings with uint64 as file descriptor, it works.
Cheers,
Andreas
The text was updated successfully, but these errors were encountered: