Git Product home page Git Product logo

Comments (4)

lemunozm avatar lemunozm commented on August 10, 2024

Hi @pmirabel

If you want to listen from a network interface as a server, the local IP you choose for listening corresponds to that interface. If you want to specify it when you connect to a remote server, currently is not supported. It's a rare use-case since the OS will usually determine the interface used. In fact, the own std::net::TcpStream do not allow configure this. I think (but not sure) you can get the correct interface, at the OS level, configuring which IPs are addressable for each interface.

Anyway, other rust TCP crates (as socket2 crate, already used by message-io) allow binding a TCP socket to an interface when it is connected, so, if your use-case is necessary, I think it could be added to message-io as a new function, connect_by(origin, dest) for example, although it will modified the internal adapter API to allow this configuration.

from message-io.

pmirabel avatar pmirabel commented on August 10, 2024

Thanks,
I forgot some context, sorry about that.

My issue is that I am using UDP multicast eg. node.network().listen(Transport::Udp, MULTICAST_ADDR) where static MULTICAST_ADDR: &str = "239.200.200.200:9977";
By now, the wired interface is configured to use 192.169.1.X IP adresses (and a DHCP server allow other peers to get whatever they need to join the network).

Does your answer still apply?

from message-io.

lemunozm avatar lemunozm commented on August 10, 2024

Ohh, ok. The answer is slightly different. Listening by multicast required two addresses, one, the interface you want to listen to, and the other one, the multicast IP group from which you want to listen to messages.

Since message-io tries to generalize and be transport agnostic, only receives one IP address to listen to. I need to make some assumptions because for multicast I have 2 addresses but 1 address parameter in the listen(). So the interface chosen is hardcoded to 0.0.0.0 (the default interface), and this is the issue you're experimenting.

I will think about it (ideas are welcome!) of how to allow specify the interface along with the multicast IP in the same listen() call without knowledge of the underlying transport. Maybe the listen() parameter could be a TransportConfiguration trait, that each adapter should implement, and UDP gives you a configuration for Multicast that allows specifying both, the interface and the multicast ip.

from message-io.

lemunozm avatar lemunozm commented on August 10, 2024

I close the issue, feel free to reopen it if needed!

from message-io.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.