├── .github └── workflows │ ├── objective-c-xcode.yml │ └── swift-package.yml ├── .gitignore ├── .jazzy.yaml ├── CHANGELOG ├── LICENSE.txt ├── LinuxMain.swift ├── NetUtils-macOS ├── Info.plist └── NetUtils_macOS.h ├── NetUtils-macOSTests └── Info.plist ├── NetUtils.podspec.json ├── NetUtils.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── NetUtils-macOS.xcscheme │ └── NetUtils.xcscheme ├── NetUtils ├── Info.plist ├── Interface.swift └── NetUtils.h ├── NetUtilsTests ├── Info.plist ├── NetUtilsTests.swift └── XCTestManifests.swift ├── Package.swift ├── README.md ├── Tests ├── Linux │ └── App │ │ ├── .gitignore │ │ ├── Package.swift │ │ ├── README.md │ │ └── Sources │ │ └── App │ │ └── main.swift ├── Swift4 │ ├── App │ │ ├── .gitignore │ │ ├── App.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── App.xcscheme │ │ ├── App │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── ViewController.swift │ │ └── Podfile │ └── runTest.sh └── Swift5 │ ├── App │ ├── .gitignore │ ├── App.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── App.xcscheme │ ├── App │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── ViewController.swift │ └── Podfile │ └── runTest.sh ├── docs ├── Classes.html ├── Classes │ ├── Interface.html │ └── Interface │ │ └── Family.html ├── Extensions.html ├── badge.svg ├── css │ ├── highlight.css │ └── jazzy.css ├── docsets │ ├── NetUtils.docset │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ ├── Documents │ │ │ ├── Classes.html │ │ │ ├── Classes │ │ │ │ ├── Interface.html │ │ │ │ └── Interface │ │ │ │ │ └── Family.html │ │ │ ├── Extensions.html │ │ │ ├── css │ │ │ │ ├── highlight.css │ │ │ │ └── jazzy.css │ │ │ ├── img │ │ │ │ ├── carat.png │ │ │ │ ├── dash.png │ │ │ │ ├── gh.png │ │ │ │ └── spinner.gif │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── jazzy.js │ │ │ │ ├── jazzy.search.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── lunr.min.js │ │ │ │ └── typeahead.jquery.js │ │ │ └── search.json │ │ │ └── docSet.dsidx │ └── NetUtils.tgz ├── img │ ├── carat.png │ ├── dash.png │ ├── gh.png │ └── spinner.gif ├── index.html ├── js │ ├── jazzy.js │ ├── jazzy.search.js │ ├── jquery.min.js │ ├── lunr.min.js │ └── typeahead.jquery.js ├── search.json └── undocumented.json └── ifaddrs └── injectXcodePath.sh /.github/workflows/objective-c-xcode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/.github/workflows/objective-c-xcode.yml -------------------------------------------------------------------------------- /.github/workflows/swift-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/.github/workflows/swift-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/.gitignore -------------------------------------------------------------------------------- /.jazzy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/.jazzy.yaml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/LinuxMain.swift -------------------------------------------------------------------------------- /NetUtils-macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/NetUtils-macOS/Info.plist -------------------------------------------------------------------------------- /NetUtils-macOS/NetUtils_macOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/NetUtils-macOS/NetUtils_macOS.h -------------------------------------------------------------------------------- /NetUtils-macOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/NetUtils-macOSTests/Info.plist -------------------------------------------------------------------------------- /NetUtils.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/NetUtils.podspec.json -------------------------------------------------------------------------------- /NetUtils.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/NetUtils.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NetUtils.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/NetUtils.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /NetUtils.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/NetUtils.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /NetUtils.xcodeproj/xcshareddata/xcschemes/NetUtils-macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/NetUtils.xcodeproj/xcshareddata/xcschemes/NetUtils-macOS.xcscheme -------------------------------------------------------------------------------- /NetUtils.xcodeproj/xcshareddata/xcschemes/NetUtils.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/NetUtils.xcodeproj/xcshareddata/xcschemes/NetUtils.xcscheme -------------------------------------------------------------------------------- /NetUtils/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/NetUtils/Info.plist -------------------------------------------------------------------------------- /NetUtils/Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/NetUtils/Interface.swift -------------------------------------------------------------------------------- /NetUtils/NetUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/NetUtils/NetUtils.h -------------------------------------------------------------------------------- /NetUtilsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/NetUtilsTests/Info.plist -------------------------------------------------------------------------------- /NetUtilsTests/NetUtilsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/NetUtilsTests/NetUtilsTests.swift -------------------------------------------------------------------------------- /NetUtilsTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/NetUtilsTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/README.md -------------------------------------------------------------------------------- /Tests/Linux/App/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | -------------------------------------------------------------------------------- /Tests/Linux/App/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/Tests/Linux/App/Package.swift -------------------------------------------------------------------------------- /Tests/Linux/App/README.md: -------------------------------------------------------------------------------- 1 | # App 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Tests/Linux/App/Sources/App/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/Tests/Linux/App/Sources/App/main.swift -------------------------------------------------------------------------------- /Tests/Swift4/App/.gitignore: -------------------------------------------------------------------------------- 1 | Pods 2 | App.xcworkspace 3 | Podfile.lock 4 | -------------------------------------------------------------------------------- /Tests/Swift4/App/App.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/Tests/Swift4/App/App.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Tests/Swift4/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/Tests/Swift4/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Tests/Swift4/App/App.xcodeproj/xcshareddata/xcschemes/App.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/Tests/Swift4/App/App.xcodeproj/xcshareddata/xcschemes/App.xcscheme -------------------------------------------------------------------------------- /Tests/Swift4/App/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/Tests/Swift4/App/App/AppDelegate.swift -------------------------------------------------------------------------------- /Tests/Swift4/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/Tests/Swift4/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Tests/Swift4/App/App/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/Tests/Swift4/App/App/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Tests/Swift4/App/App/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/Tests/Swift4/App/App/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Tests/Swift4/App/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/Tests/Swift4/App/App/Info.plist -------------------------------------------------------------------------------- /Tests/Swift4/App/App/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/Tests/Swift4/App/App/ViewController.swift -------------------------------------------------------------------------------- /Tests/Swift4/App/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/Tests/Swift4/App/Podfile -------------------------------------------------------------------------------- /Tests/Swift4/runTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/Tests/Swift4/runTest.sh -------------------------------------------------------------------------------- /Tests/Swift5/App/.gitignore: -------------------------------------------------------------------------------- 1 | Pods 2 | App.xcworkspace 3 | Podfile.lock 4 | -------------------------------------------------------------------------------- /Tests/Swift5/App/App.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/Tests/Swift5/App/App.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Tests/Swift5/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/Tests/Swift5/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Tests/Swift5/App/App.xcodeproj/xcshareddata/xcschemes/App.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/Tests/Swift5/App/App.xcodeproj/xcshareddata/xcschemes/App.xcscheme -------------------------------------------------------------------------------- /Tests/Swift5/App/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/Tests/Swift5/App/App/AppDelegate.swift -------------------------------------------------------------------------------- /Tests/Swift5/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/Tests/Swift5/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Tests/Swift5/App/App/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/Tests/Swift5/App/App/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Tests/Swift5/App/App/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/Tests/Swift5/App/App/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Tests/Swift5/App/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/Tests/Swift5/App/App/Info.plist -------------------------------------------------------------------------------- /Tests/Swift5/App/App/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/Tests/Swift5/App/App/ViewController.swift -------------------------------------------------------------------------------- /Tests/Swift5/App/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/Tests/Swift5/App/Podfile -------------------------------------------------------------------------------- /Tests/Swift5/runTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/Tests/Swift5/runTest.sh -------------------------------------------------------------------------------- /docs/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/Classes.html -------------------------------------------------------------------------------- /docs/Classes/Interface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/Classes/Interface.html -------------------------------------------------------------------------------- /docs/Classes/Interface/Family.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/Classes/Interface/Family.html -------------------------------------------------------------------------------- /docs/Extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/Extensions.html -------------------------------------------------------------------------------- /docs/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/badge.svg -------------------------------------------------------------------------------- /docs/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/css/highlight.css -------------------------------------------------------------------------------- /docs/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/NetUtils.docset/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/docsets/NetUtils.docset/Contents/Info.plist -------------------------------------------------------------------------------- /docs/docsets/NetUtils.docset/Contents/Resources/Documents/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/docsets/NetUtils.docset/Contents/Resources/Documents/Classes.html -------------------------------------------------------------------------------- /docs/docsets/NetUtils.docset/Contents/Resources/Documents/Classes/Interface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/docsets/NetUtils.docset/Contents/Resources/Documents/Classes/Interface.html -------------------------------------------------------------------------------- /docs/docsets/NetUtils.docset/Contents/Resources/Documents/Classes/Interface/Family.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/docsets/NetUtils.docset/Contents/Resources/Documents/Classes/Interface/Family.html -------------------------------------------------------------------------------- /docs/docsets/NetUtils.docset/Contents/Resources/Documents/Extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/docsets/NetUtils.docset/Contents/Resources/Documents/Extensions.html -------------------------------------------------------------------------------- /docs/docsets/NetUtils.docset/Contents/Resources/Documents/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/docsets/NetUtils.docset/Contents/Resources/Documents/css/highlight.css -------------------------------------------------------------------------------- /docs/docsets/NetUtils.docset/Contents/Resources/Documents/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/docsets/NetUtils.docset/Contents/Resources/Documents/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/NetUtils.docset/Contents/Resources/Documents/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/docsets/NetUtils.docset/Contents/Resources/Documents/img/carat.png -------------------------------------------------------------------------------- /docs/docsets/NetUtils.docset/Contents/Resources/Documents/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/docsets/NetUtils.docset/Contents/Resources/Documents/img/dash.png -------------------------------------------------------------------------------- /docs/docsets/NetUtils.docset/Contents/Resources/Documents/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/docsets/NetUtils.docset/Contents/Resources/Documents/img/gh.png -------------------------------------------------------------------------------- /docs/docsets/NetUtils.docset/Contents/Resources/Documents/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/docsets/NetUtils.docset/Contents/Resources/Documents/img/spinner.gif -------------------------------------------------------------------------------- /docs/docsets/NetUtils.docset/Contents/Resources/Documents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/docsets/NetUtils.docset/Contents/Resources/Documents/index.html -------------------------------------------------------------------------------- /docs/docsets/NetUtils.docset/Contents/Resources/Documents/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/docsets/NetUtils.docset/Contents/Resources/Documents/js/jazzy.js -------------------------------------------------------------------------------- /docs/docsets/NetUtils.docset/Contents/Resources/Documents/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/docsets/NetUtils.docset/Contents/Resources/Documents/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/docsets/NetUtils.docset/Contents/Resources/Documents/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/docsets/NetUtils.docset/Contents/Resources/Documents/js/jquery.min.js -------------------------------------------------------------------------------- /docs/docsets/NetUtils.docset/Contents/Resources/Documents/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/docsets/NetUtils.docset/Contents/Resources/Documents/js/lunr.min.js -------------------------------------------------------------------------------- /docs/docsets/NetUtils.docset/Contents/Resources/Documents/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/docsets/NetUtils.docset/Contents/Resources/Documents/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/docsets/NetUtils.docset/Contents/Resources/Documents/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/docsets/NetUtils.docset/Contents/Resources/Documents/search.json -------------------------------------------------------------------------------- /docs/docsets/NetUtils.docset/Contents/Resources/docSet.dsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/docsets/NetUtils.docset/Contents/Resources/docSet.dsidx -------------------------------------------------------------------------------- /docs/docsets/NetUtils.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/docsets/NetUtils.tgz -------------------------------------------------------------------------------- /docs/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/img/carat.png -------------------------------------------------------------------------------- /docs/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/img/dash.png -------------------------------------------------------------------------------- /docs/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/img/gh.png -------------------------------------------------------------------------------- /docs/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/img/spinner.gif -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/js/jazzy.js -------------------------------------------------------------------------------- /docs/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/js/jquery.min.js -------------------------------------------------------------------------------- /docs/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/js/lunr.min.js -------------------------------------------------------------------------------- /docs/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/search.json -------------------------------------------------------------------------------- /docs/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/docs/undocumented.json -------------------------------------------------------------------------------- /ifaddrs/injectXcodePath.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svdo/swift-netutils/HEAD/ifaddrs/injectXcodePath.sh --------------------------------------------------------------------------------