-
Notifications
You must be signed in to change notification settings - Fork 465
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
afsocket: added support SO_REUSEPORT_LB #3438
Conversation
Added support of SO_REUSEPORT_LB option, allowing multiple programs or threads to bind to the same port, and incoming connections load balanced using a hash function. The option has been included in FreeBSD 12.0. Signed-off-by: Boris Korzun <drtr0jan@yandex.ru>
|
This user does not have permission to start the build. Can one of the admins verify this patch and start the build? |
2 similar comments
|
This user does not have permission to start the build. Can one of the admins verify this patch and start the build? |
|
This user does not have permission to start the build. Can one of the admins verify this patch and start the build? |
|
@kira-syslogng ok to test |
|
Build SUCCESS |
Signed-off-by: Kokan <kokaipeter@gmail.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the contribution! 👍
Added support of SO_REUSEPORT_LB socket option, allowing multiple programs or threads to bind to the same port, and incoming connections load balanced using a hash function. The option has been included in FreeBSD 12.0 (freebsd/freebsd-src@bbf7d4d).
As continuation for #2379.