Skip to content

Commit

Permalink
update changelog, fix lint (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
bwp91 committed Jun 30, 2024
1 parent e0455a2 commit c09c0ba
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to `@homebridge/ciao` will be documented in this file. This project tries to adhere to [Semantic Versioning](http://semver.org/).

## BETA

### Added

- Add support for publishing on IPv6 networks (#19) (@adriancable)

### Changed

- update dependencies
- update dependencies, fix typedoc (#44)
- update changelog, fix lint

## v1.2.0 (2024-04-10)

### Changed
Expand Down
8 changes: 7 additions & 1 deletion src/MDNSServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,13 @@ export class MDNSServer {

if (isIPv6) {
if (networkInterface.loopback !== rinfo.address.includes("%lo")) {
debug("Received packet on a %s interface (%s) which is coming from a %s interface (%s)", networkInterface.loopback ? "loopback" : "non-loopback", name, rinfo.address.includes("%lo") ? "loopback" : "non-loopback", rinfo.address);
debug(
"Received packet on a %s interface (%s) which is coming from a %s interface (%s)",
networkInterface.loopback ? "loopback" : "non-loopback",
name,
rinfo.address.includes("%lo") ? "loopback" : "non-loopback",
rinfo.address,
);
// return;
}
} else {
Expand Down

0 comments on commit c09c0ba

Please sign in to comment.