Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Windows: wait_{read,writ}able limited to 512 sockets #3

Closed
njsmith opened this issue Jan 22, 2017 · 3 comments
Closed

Windows: wait_{read,writ}able limited to 512 sockets #3

njsmith opened this issue Jan 22, 2017 · 3 comments

Comments

@njsmith
Copy link
Member

njsmith commented Jan 22, 2017

This is because we currently use select.select. The limit is entirely artificial -- the underlying fd_set object is just a (int length, array of SOCKET integers) structure which we could allocate at whatever size we wanted, if we wanted. Or we could use WSAPoll.

@njsmith njsmith mentioned this issue Feb 12, 2017
11 tasks
@njsmith
Copy link
Member Author

njsmith commented Feb 12, 2017

This should be considered in combination with #52.

@oremanj
Copy link
Member

oremanj commented Mar 12, 2019

I think this is superseded by the plan in #52 to stop using select() entirely.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants