-
Notifications
You must be signed in to change notification settings - Fork 43
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
Registered services aren't showing up when using standard tools to test #13
Comments
The type should end with ".local." . Could you please try that? Then you can try
I've not used |
🤦 it was the |
Also it's |
I tried the following works:
or
i.e. no |
That's how I'm testing and it's not working 🤔 |
Looks like I saw it working only because it's in local machine and in dns buffer. Currently our code does not really support wildcard query as I didn't know about it before. It's a missing feature we need to support. Meantime, is it okay for you to use the direct name query? or is the wildcard support a blocker? |
The direct name query is fine for my unit tests, thanks! |
PR is submitted to fix this issue. My local test seems to be good. If you can help testing the PR branch |
PR merged. You can try it using the latest from this git repo main branch. |
New crate version v0.4.2 released. Please help check that fixes the issue for you. Thanks! |
Looking good to me! |
I'm trying to implement a very minimal service advertisement for use in some unit tests for a strictly client implementation in a different project. I'm more or less pattern matching directly off the code in the documentation; this is the current test
main
I'm using to eval the library:The service does not seem to be advertised anywhere though. I've tested on both macOS using
dns-sd
and Ubuntu 20.04 usingmdns-scan
and the service does not show up. Some example commands I've tried:$> dns-sd -B _services._udp. local.
(this should show all dns-sd services)$> dns-sd -B _mytest_.udp local.
(a direct query against the service type, still shows nothing)I'm not sure if this is a bug or if there is something missing from the docs that I haven't done correctly here. Thanks for any help you can provide with this!
The text was updated successfully, but these errors were encountered: