Nicolas Vandamme

Results 16 comments of Nicolas Vandamme

Hi @timostamm , Thanks for the feedback, sure! For now, i'm using a quick'n dirty script on my side to ensure all local imports has an extension. This script is...

Hi, Thanks for the quick reply ! These are very good points, it was a wild guess on my side. Of course, refactoring to match this very different processing architecture...

Same issue here, cannot invoke "@github ..." without triggering the Open Issue window.

The crate `if-addrs` has a feature to avoid filtering link-local IPv6 adresses. Proposing to add the `link-local` feature of the crate `if-addrs` as default in `Cargo.toml`

Switched env_logger back to version 0.10.2, as it seems that 0.11.x does not build on rust 1.70.0

Might be a good idea to ensure smooth IPv6 publishing by binding the right interface using it's index ? There is a new crate that is lisitng iface indexes (unix...

Hi, only with ply and las/z, as i was focusing on these two. Maybe there are some specific options for otherS, especially e57, though I've followed the base PDAL docs...

Code borrowed from `if_addrs`: ```rust fn is_loopback_ipv6(ip: Ipv6Addr) -> bool { ip.segments() == [0, 0, 0, 0, 0, 0, 0, 1] } fn is_loopback_ipv4(ip: Ipv4Addr) -> bool { ip.octets()[0] ==...

@podarcis Why ? Either way, local interfaces are following RFC's adresses allocations.... And if the OS allows otherwise, it is another level of problems awaiting network stack usage anyway...