Swiftpack.co - grandcentrix/GCXMulticastDNSKit as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by grandcentrix.
grandcentrix/GCXMulticastDNSKit v1.4.0
Multicast DNS framework for iOS
⭐️ 30
🕓 2 years ago
iOS
.package(url: "https://github.com/grandcentrix/GCXMulticastDNSKit.git", from: "v1.4.0")

GCXMulticastDNSKit

License Release Carthage compatible Cocoapods compatible

Multicast DNS framework for iOS

Abtract

GCXMulticastDNSKit is a framework that can be used to discover network services that are announced on the local network. It is a wrapper for the network services provided by Apple.

Introduction

mDNS is a service to resolve hostnames on a local network without the use of a central domain name server. Instead a resolving host simply sends a DNS query to a local multicast address and the host with that name responds with a multicast message with its IP address. Multicast DNS is also used in combination with DNS based service discovery where a host that provides a network service can announce its service to the local network. Those services can then be discovered using multicast messages

See: [1] Multicast DNS [2] Zeroconf Service discovery

This framework currenlty provides functionality to discover services on the local network based on their service type and service name.

Installation

Cocoapods

use_frameworks!

pod 'GCXMulticastDNSKit', :git => 'https://github.com/grandcentrix/GCXMulticastDNSKit.git', :tag => 'v1.4.0'

Carthage

git "https://github.com/grandcentrix/GCXMulticastDNSKit.git" ~> 1.4.0

Swift Package Manager

Swift Package Manager is a dependency manager built into Xcode. GCXMulticastDNSKit supports SPM from version 5.2.0.

If you are using Xcode 11 or higher, go to File -> Swift Packages -> Add Package Dependency and enter the package repository URL, then follow the instructions.

Usage

To use this framework we assume that you know the service type of the services (for example _ptp._tcp is valid service type for PTP/IP services, another example would be _http._tcp). Because there can be more than one service that provides functionality you can also specify an optional prefix for service name that must match. For the example below we are looking for PTP compatible cameras from Vendor A. Those announce themselves with a PTP service type and a services name of Vendor A (#serialnr). We want to find all VendorA cameras on the local network so we use _ptp._tcp as service type and Vendor A as service name prefix:

let configurations = [DiscoveryConfiguration(serviceType: "_ptp._tcp",
                                           serviceNamePrefix: "Vendor A")]

discovery = Discovery(with: configurations, delegate: self)
discovery?.startDiscovery()

License

Copyright 2017 grandcentrix GmbH

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

GitHub

link
Stars: 30
Last commit: 2 years ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Release Notes

GCXMulticastDNSKit v1.4.0
2 years ago
  • Fix an issue causing scanning to stop - Improve scan stability #27
  • Revert minimum deployment target to ios 9

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics