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
{{ message }}
This repository was archived by the owner on May 31, 2025. It is now read-only.
xmlrpcpp uses select() for checking the open file descriptors, but this function can't check morethan FD_SETSIZE file descriptors in Linux. FD_SETSIZE is set to 1024 by default and increasing that value would require to rebuild the current kernel.
select's 'successor' poll() isn't limited by 1024, so replacing select() by poll() would fix that problem.