├── .gitignore ├── .swift-version ├── .travis.yml ├── LICENSE ├── Package.swift ├── README.md ├── Sources ├── Cookie.swift ├── Parser.swift ├── RequestParser.swift └── ResponseParser.swift └── Tests ├── HTTPParser ├── RequestParserTests.swift └── ResponsetParserTests.swift └── LinuxMain.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/HTTPParser/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | DEVELOPMENT-SNAPSHOT-2016-05-31-a 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/HTTPParser/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/HTTPParser/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/HTTPParser/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/HTTPParser/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Cookie.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/HTTPParser/HEAD/Sources/Cookie.swift -------------------------------------------------------------------------------- /Sources/Parser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/HTTPParser/HEAD/Sources/Parser.swift -------------------------------------------------------------------------------- /Sources/RequestParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/HTTPParser/HEAD/Sources/RequestParser.swift -------------------------------------------------------------------------------- /Sources/ResponseParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/HTTPParser/HEAD/Sources/ResponseParser.swift -------------------------------------------------------------------------------- /Tests/HTTPParser/RequestParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/HTTPParser/HEAD/Tests/HTTPParser/RequestParserTests.swift -------------------------------------------------------------------------------- /Tests/HTTPParser/ResponsetParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/HTTPParser/HEAD/Tests/HTTPParser/ResponsetParserTests.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZewoGraveyard/HTTPParser/HEAD/Tests/LinuxMain.swift --------------------------------------------------------------------------------