Giter Site home page Giter Site logo

Comments (5)

nicbn avatar nicbn commented on June 17, 2024

Won't compile on Windows
https://pastebin.com/CpRmNHNf

from portforwarder-rs.

pzmarzly avatar pzmarzly commented on June 17, 2024

Thanks.

I initially thought get_if_addrs was going to be a problem (perhaps different structs representing the network interface, depending on the OS - but I just looked at the source code and it's not the case).

It makes a lot of sense for the Ctrl+C listener to be a problem. I think it would be enough to just rewrite this part:

use chan_signal::Signal;
let signal = chan_signal::notify(&[Signal::INT, Signal::TERM]);
for port in parsed_ports {
match forwarder.forward_port(port.1, port.2, port.0, "PortForwardRs") {
Ok(_) => println!("{} {}:{} -> {}:{}", port.0, forwarder.gateway.addr.ip(), port.2, forwarder.network_interface, port.1),
Err(err) => eprintln!("Error! Could map {} {}:{} -> {}:{} - {}", port.0, forwarder.gateway.addr.ip(), port.2, forwarder.network_interface, port.1, err),
}
}
println!("Going to sleep... Press Ctrl-C to close program.");
chan_select! {
signal.recv() -> signal => {
println!("Received {:?}, shutting down...", signal)
}
}

to use the cross-platform ctrlc crate.

I can work on it next week, unless you want to fix it yourself and open a PR.

from portforwarder-rs.

eutampieri avatar eutampieri commented on June 17, 2024

I think I could have a look if you didn’t have time

from portforwarder-rs.

pzmarzly avatar pzmarzly commented on June 17, 2024

Sure, go ahead.

I consider the project done for me (it does all I wanted), so I'm not keen on spending time on it, but I would gladly merge working code, especially if it means making the project useful for more people.

from portforwarder-rs.

eutampieri avatar eutampieri commented on June 17, 2024

Ok, on macOS compiles. I will check on Windows as soon as I have time

from portforwarder-rs.

Related Issues (3)

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.