Coder Social home page Coder Social logo

Comments (5)

keepsimple1 avatar keepsimple1 commented on August 16, 2024
-   let service_name_len = ty_domain.len() - DOMAIN_LEN - 1; // exclude the leading `_`
+   let service_name_len = ty_domain.len() - (DOMAIN_LEN - 1); // exclude the leading `_`

Curiously, I cannot understand what the issue is, and why the diff is correct. Could you please explain a bit?

from mdns-sd.

wfeii1980 avatar wfeii1980 commented on August 16, 2024
-   let service_name_len = ty_domain.len() - DOMAIN_LEN - 1; // exclude the leading `_`
+   let service_name_len = ty_domain.len() - (DOMAIN_LEN - 1); // exclude the leading `_`

Curiously, I cannot understand what the issue is, and why the diff is correct. Could you please explain a bit?

cargo run --example register _tcp _googlecast
   Compiling mdns-sd v0.10.1 (/home/wii/data/works2/usb/mdns-sd)
    Finished dev [unoptimized + debuginfo] target(s) in 0.78s
     Running `target/debug/examples/register _tcp _googlecast`
Registered service _googlecast._tcp.local.
thread 'mDNS_daemon' panicked at src/service_daemon.rs:2086:28:
attempt to subtract with overflow
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

from mdns-sd.

keepsimple1 avatar keepsimple1 commented on August 16, 2024
cargo run --example register _tcp _googlecast

The usage of this command is:

$ cargo run --example register                               
    Finished dev [unoptimized + debuginfo] target(s) in 0.05s
     Running `target/debug/examples/register`
Usage:
cargo run --example register <service_type> <instance_name> [--unregister]
Options:
--unregister: automatically unregister after 2 seconds

For example:
cargo run --example register _my-hello._udp test1

In your case, the service type should be _googlecast._tcp, and the service instance name is missing. This command should be like:

cargo run --example register _googlecast._tcp mycast-device

(where mycast-device is the instance name)

Does it make sense?

(Meantime, I can try to make the example code and the mentioned function more error proof. But the current logic is correct. Right? )

from mdns-sd.

keepsimple1 avatar keepsimple1 commented on August 16, 2024

I've opened a PR to add a sanity check for the service type name length. If you have time, let me know that helps.

from mdns-sd.

keepsimple1 avatar keepsimple1 commented on August 16, 2024

Patch is merged. Let me know if there is any issue.

from mdns-sd.

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.