Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 794 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 794 Bytes

swiftysockets

Socket Implementation in Swift

swiftysockets is a socket implementation in Swift built upon the work done by the Zewo TCPIP module.

To use swiftysockets in your application you'll need to first install libtide.a. Once libtide.a and its headers are installed on your system you can use swiftysockets in your project with a Swift Package Manager Package dependency:

import PackageDescription

let package = Package(
  name:  "chatterserver",
  dependencies: [
    .Package(url:  "https://github.com/iachievedit/swiftysockets", majorVersion: 0),
  ]
)

An example of how to use swiftysockets can be found in our swiftychatter application.