gitextract_a7i252zw/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── config.yml │ │ ├── feature_request.md │ │ └── general-question.md │ ├── pull_request_template.md │ └── workflows/ │ └── release.yml ├── .gitignore ├── .ruby-version ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── Package.swift ├── README.md ├── Sources/ │ ├── Compression/ │ │ ├── Compression.swift │ │ └── WSCompression.swift │ ├── DataBytes/ │ │ └── Data+Extensions.swift │ ├── Engine/ │ │ ├── Engine.swift │ │ ├── NativeEngine.swift │ │ └── WSEngine.swift │ ├── Framer/ │ │ ├── FoundationHTTPHandler.swift │ │ ├── FoundationHTTPServerHandler.swift │ │ ├── FrameCollector.swift │ │ ├── Framer.swift │ │ ├── HTTPHandler.swift │ │ └── StringHTTPHandler.swift │ ├── Info.plist │ ├── PrivacyInfo.xcprivacy │ ├── Security/ │ │ ├── FoundationSecurity.swift │ │ └── Security.swift │ ├── Server/ │ │ ├── Server.swift │ │ └── WebSocketServer.swift │ ├── Starscream/ │ │ └── WebSocket.swift │ ├── Starscream.h │ └── Transport/ │ ├── FoundationTransport.swift │ ├── TCPTransport.swift │ └── Transport.swift ├── Starscream.podspec ├── Tests/ │ ├── CompressionTests.swift │ ├── FuzzingTests.swift │ ├── Info.plist │ ├── MockServer.swift │ ├── MockTransport.swift │ └── StarscreamTests/ │ └── StarscreamTests.swift ├── examples/ │ ├── AutobahnTest/ │ │ ├── .gitignore │ │ └── Autobahn/ │ │ ├── AppDelegate.swift │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── Images.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── ViewController.swift │ ├── SimpleTest/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── SimpleTest/ │ │ │ ├── AppDelegate.swift │ │ │ ├── Base.lproj/ │ │ │ │ └── Main.storyboard │ │ │ ├── Images.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── LaunchImage.launchimage/ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ └── ViewController.swift │ │ └── ws-server.rb │ └── WebSocketsOrgEcho/ │ ├── Podfile │ ├── WebSocketsOrgEcho/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── URL+Extensions.swift │ │ └── ViewController.swift │ └── WebSocketsOrgEcho.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ └── IDEWorkspaceChecks.plist └── fastlane/ ├── Fastfile └── README.md