Skip to content
/ dns_sd Public

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

License

Notifications You must be signed in to change notification settings

nallick/dns_sd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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"]),

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published