SwiftPing 1.1

SwiftPing 1.1

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Jul 2016
SPMSupports SPM

Maintained by Ankit Thakur.



SwiftPing

Description

SwiftPing ICMP Pinging in swift..

Usage

let pingInterval:TimeInterval = 3
let timeoutInterval:TimeInterval = 4
let configuration = PingConfiguration(pInterval:pingInterval, withTimeout:  timeoutInterval)

print(configuration)

SwiftPing.ping(host: "google.com", configuration: configuration, queue: DispatchQueue.main) { (ping, error) in
print("\(ping)")
print("\(error)")
}

Installation

ICMP Pinging in swift.

*Thanks to https://github.com/OliverLetterer/SPLPing. Migrated it to Swift 3 and added 1 enhancement.

Enhancement: Now pinging is supportable in any of the GCD Queue, where user wants.

SwiftPing is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'SwiftPing'

SwiftPing is also available through Carthage. To install just write into your Cartfile:

github "ankitthakur85/SwiftPing"

Todo

Test cases and usage needs to be added

Author

Ankit Thakur, [email protected]

Contributing

We would love you to contribute to SwiftPing and request you follow these guidelines.

Raising issues

Please raise any bug reports on the issue tracker. Be sure to search the list to see if your issue has already been raised.

A good bug report is one that make it easy for us to understand what you were trying to do and what went wrong. Provide as much context as possible so we can try to recreate the issue.

If you find a bug, please submit a pull request with a failing test case displaying the bug or create an issue. Please add tests alongside your pull requests.

Coding standards

Please ensure you follow the coding standards used throughout the existing code base. Some basic rules include:

  • all PRs must have passing builds for all operating systems.

License

SwiftPing is available under the MIT license. See the LICENSE file for more info.