├── .gitignore ├── .jazzy.yaml ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── SwifterSockets │ ├── ConnectToTipServer.swift │ ├── Connection.swift │ ├── ConnectionPool.swift │ ├── FileDescriptorMacros.swift │ ├── InterfaceAccess.swift │ ├── ReceiverProtocol.swift │ ├── ServerProtocol.swift │ ├── SetupTipServer.swift │ ├── SwifterSocketsResult.swift │ ├── SwifterSocketsUtils.swift │ ├── TipAccept.swift │ ├── TipInterface.swift │ ├── TipReceiverLoop.swift │ ├── TipServer.swift │ ├── TipTransfer.swift │ ├── TransmitterProtocol.swift │ └── WaitForSelect.swift ├── Tests └── LinuxMain.swift └── docs └── User Manual.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Balancingrock/SwifterSockets/HEAD/.gitignore -------------------------------------------------------------------------------- /.jazzy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Balancingrock/SwifterSockets/HEAD/.jazzy.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Balancingrock/SwifterSockets/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Balancingrock/SwifterSockets/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Balancingrock/SwifterSockets/HEAD/README.md -------------------------------------------------------------------------------- /Sources/SwifterSockets/ConnectToTipServer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Balancingrock/SwifterSockets/HEAD/Sources/SwifterSockets/ConnectToTipServer.swift -------------------------------------------------------------------------------- /Sources/SwifterSockets/Connection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Balancingrock/SwifterSockets/HEAD/Sources/SwifterSockets/Connection.swift -------------------------------------------------------------------------------- /Sources/SwifterSockets/ConnectionPool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Balancingrock/SwifterSockets/HEAD/Sources/SwifterSockets/ConnectionPool.swift -------------------------------------------------------------------------------- /Sources/SwifterSockets/FileDescriptorMacros.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Balancingrock/SwifterSockets/HEAD/Sources/SwifterSockets/FileDescriptorMacros.swift -------------------------------------------------------------------------------- /Sources/SwifterSockets/InterfaceAccess.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Balancingrock/SwifterSockets/HEAD/Sources/SwifterSockets/InterfaceAccess.swift -------------------------------------------------------------------------------- /Sources/SwifterSockets/ReceiverProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Balancingrock/SwifterSockets/HEAD/Sources/SwifterSockets/ReceiverProtocol.swift -------------------------------------------------------------------------------- /Sources/SwifterSockets/ServerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Balancingrock/SwifterSockets/HEAD/Sources/SwifterSockets/ServerProtocol.swift -------------------------------------------------------------------------------- /Sources/SwifterSockets/SetupTipServer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Balancingrock/SwifterSockets/HEAD/Sources/SwifterSockets/SetupTipServer.swift -------------------------------------------------------------------------------- /Sources/SwifterSockets/SwifterSocketsResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Balancingrock/SwifterSockets/HEAD/Sources/SwifterSockets/SwifterSocketsResult.swift -------------------------------------------------------------------------------- /Sources/SwifterSockets/SwifterSocketsUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Balancingrock/SwifterSockets/HEAD/Sources/SwifterSockets/SwifterSocketsUtils.swift -------------------------------------------------------------------------------- /Sources/SwifterSockets/TipAccept.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Balancingrock/SwifterSockets/HEAD/Sources/SwifterSockets/TipAccept.swift -------------------------------------------------------------------------------- /Sources/SwifterSockets/TipInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Balancingrock/SwifterSockets/HEAD/Sources/SwifterSockets/TipInterface.swift -------------------------------------------------------------------------------- /Sources/SwifterSockets/TipReceiverLoop.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Balancingrock/SwifterSockets/HEAD/Sources/SwifterSockets/TipReceiverLoop.swift -------------------------------------------------------------------------------- /Sources/SwifterSockets/TipServer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Balancingrock/SwifterSockets/HEAD/Sources/SwifterSockets/TipServer.swift -------------------------------------------------------------------------------- /Sources/SwifterSockets/TipTransfer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Balancingrock/SwifterSockets/HEAD/Sources/SwifterSockets/TipTransfer.swift -------------------------------------------------------------------------------- /Sources/SwifterSockets/TransmitterProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Balancingrock/SwifterSockets/HEAD/Sources/SwifterSockets/TransmitterProtocol.swift -------------------------------------------------------------------------------- /Sources/SwifterSockets/WaitForSelect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Balancingrock/SwifterSockets/HEAD/Sources/SwifterSockets/WaitForSelect.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Balancingrock/SwifterSockets/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /docs/User Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Balancingrock/SwifterSockets/HEAD/docs/User Manual.md --------------------------------------------------------------------------------