-
Notifications
You must be signed in to change notification settings - Fork 275
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
Allow binding to another (non-default) interface #29
base: master
Are you sure you want to change the base?
Conversation
SO_BINDTODEVICE seems to be a linux-specific API. what prevents you from using the ip address of the specified interface with the existing -b option? |
The existing |
Nice feature, but works only under linux. |
It would be nice to listen on a different interface that the outgoing connections. |
The problem is that if the IP address set by the |
I've patched this PR against master and it works and does exactly what I needed. Would you consider accepting it, please? |
i can't merge this PR as-is, because it would break build on solaris, *BSD, and OSX |
It is a matter of surrounding the Linux-specific code with |
i dont want to litter the code with ugly ifdefs, they need to be in a single spot, if at all |
For anyone else looking for this functionality. Dante doesn't have it either, their I do appreciate that @rofl0r doesn't want to clutter such a clean minimalist project. |
No description provided.