dns_sd

master

A Swift language friendly wrapper for the dns_sd library for network service discovery.
nallick/dns_sd

dns_sd

A Swift language friendly wrapper for the dns_sd library for network service discovery, also known as (or compatibile with) Bonjour, Zeroconf, Avahi and mDNS. This library is probably most useful on Linux, since Apple platforms include the Bonjour API in Foundation. It has been tested for typical publish, browse and resolve patterns on Raspian Buster, less so for domain enumeration and record query.

For in depth information: DNS Service Discovery Programming Guide

For example, to browse for a service:

import dns_sd
import Foundation

func browseServices(ofType type: String, inDomain domain: String? = nil, interfaceIndex: UInt32 = 0) async throws -> Set<DNSService.LocatedService> {
    try await withCheckedThrowingContinuation { continuation in
        var locatedServices = Set<DNSService.LocatedService>()
        let result = DNSService.browseServices(ofType: type, inDomain: domain, interfaceIndex: interfaceIndex,
                errorCallback: { error in
                    continuation.resume(throwing: error)
                },
                serviceCallback: { service, locatedService in
                    locatedServices.insert(locatedService)
                    if !locatedService.flags.contains(.moreComing) {
                        service.stop()
                        continuation.resume(returning: locatedServices)  // return after receiving the last service
                    }
                })

        if case .failure(let error) = result {
            continuation.resume(throwing: error)
        }
    }
}

print("Scanning...")

Task {
    let services = try await browseServices(ofType: "_http._tcp")
    print(services)
    exit(0)
}

RunLoop.current.run()

Linux preconditions:

sudo apt-get install pkg-config 
sudo apt install libavahi-compat-libdnssd-dev

Use:

To add dns_sd to your project, declare a dependency in your Package.swift file,

.package(url: "https://github.com/nallick/dns_sd.git", from: "1.0.0"),

and add the dependency to your target:

.target(name: "MyProjectTarget", dependencies: ["dns_sd"]),

Description

  • Swift Tools 5.0.0
View More Packages from this Author

Dependencies

  • None
Last updated: Sun Apr 12 2026 07:10:37 GMT-0900 (Hawaii-Aleutian Daylight Time)