Skip to content

Commit

Permalink
Merge pull request #54 from nvandamme/main
Browse files Browse the repository at this point in the history
fix publishing ipv6 link-local
  • Loading branch information
willstott101 authored Jul 19, 2024
2 parents 424150f + 0b0e6cf commit faa90de
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ edition = "2018"

[dependencies]
byteorder = "1.5"
if-addrs = "0.11.0"
hostname = "0.3.1"
if-addrs = { version = "0.12.0", features = ["link-local"] }
hostname = "0.4.0"
log = "0.4"
multimap = "0.9"
multimap = "0.10.0"
rand = "0.8"
futures-util = "0.3"
thiserror = "1.0"
Expand All @@ -25,10 +25,10 @@ socket2 = { version = "0.5", features = ["all"] }
winapi = { version = "0.3", features = ["netioapi"] }

[target.'cfg(not(windows))'.dependencies]
nix = { version = "0.27", features = ["net"] }
nix = { version = "0.28", features = ["net"] }

[dev-dependencies]
env_logger = { version = "0.10", default-features = false, features = [
env_logger = { version = "0.10.2", default-features = false, features = [
"color",
"humantime",
"auto-color",
Expand Down
4 changes: 2 additions & 2 deletions examples/zeroconf_test.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
from zeroconf import ServiceBrowser, Zeroconf, IPVersion, ZeroconfServiceTypes
from zeroconf import ServiceBrowser, ServiceListener, Zeroconf, IPVersion, ZeroconfServiceTypes
from time import sleep


TYPE = "_http._tcp.local."
NAME = "libmdns Web Server"


class MyListener:
class MyListener(ServiceListener):
def __init__(self):
self.found = []

Expand Down

0 comments on commit faa90de

Please sign in to comment.