Skip to content

Instantly share code, notes, and snippets.

View MohsenMoghimi's full-sized avatar

Mohsen Moghimi MohsenMoghimi

  • freelance
  • Tehran, Iran
View GitHub Profile
@MohsenMoghimi
MohsenMoghimi / Reachability.swift
Created October 19, 2019 16:56 — forked from saeed-rz/Reachability.swift
Network Reachability class in swift 4
import Foundation
import SystemConfiguration
class Reachability
{
var hostname: String?
var isRunning = false
var isReachableOnWWAN: Bool
var reachability: SCNetworkReachability?
var reachabilityFlags = SCNetworkReachabilityFlags()
@MohsenMoghimi
MohsenMoghimi / Reachability.swift
Created October 19, 2019 16:56 — forked from saeed-rz/Reachability.swift
Network Reachability class in swift 4
import Foundation
import SystemConfiguration
class Reachability
{
var hostname: String?
var isRunning = false
var isReachableOnWWAN: Bool
var reachability: SCNetworkReachability?
var reachabilityFlags = SCNetworkReachabilityFlags()