├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── ESP32 └── hello_world │ └── pytest_hello_world.py ├── LICENSE ├── Makefile ├── README.md ├── crouton.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── All Crouton.xcscheme │ ├── BLIP.xcscheme │ ├── Tests.xcscheme │ ├── demo_blipclient.xcscheme │ ├── demo_client.xcscheme │ └── demo_server.xcscheme ├── docs ├── Awaitable Types.md ├── Coroutine Types.md ├── Errors.md ├── Introduction.md ├── Mini.md ├── PubSub.md ├── README.md └── Results.md ├── include └── crouton │ ├── Actor.hh │ ├── Awaitable.hh │ ├── CoCondition.hh │ ├── CoroLifecycle.hh │ ├── Coroutine.hh │ ├── Crouton.hh │ ├── CroutonFwd.hh │ ├── Error.hh │ ├── EventLoop.hh │ ├── Future.hh │ ├── Generator.hh │ ├── Misc.hh │ ├── Producer.hh │ ├── PubSub.hh │ ├── Queue.hh │ ├── Result.hh │ ├── Scheduler.hh │ ├── Select.hh │ ├── Task.hh │ ├── io │ ├── AddrInfo.hh │ ├── FileStream.hh │ ├── Filesystem.hh │ ├── Framer.hh │ ├── HTTPConnection.hh │ ├── HTTPHandler.hh │ ├── HTTPParser.hh │ ├── ISocket.hh │ ├── IStream.hh │ ├── LocalSocket.hh │ ├── Pipe.hh │ ├── Process.hh │ ├── Stream.hh │ ├── TCPServer.hh │ ├── URL.hh │ ├── WebSocket.hh │ ├── apple │ │ └── NWConnection.hh │ ├── blip │ │ ├── BLIP.hh │ │ ├── BLIPIO.hh │ │ ├── Connection.hh │ │ ├── Dispatcher.hh │ │ ├── Message.hh │ │ ├── MessageBuilder.hh │ │ └── Protocol.hh │ ├── mbed │ │ └── TLSSocket.hh │ └── uv │ │ └── UVBase.hh │ └── util │ ├── Backtrace.hh │ ├── Base.hh │ ├── Bytes.hh │ ├── Defer.hh │ ├── LinkedList.hh │ ├── Logging.hh │ ├── MiniFormat.hh │ ├── MiniLogger.hh │ ├── MiniOStream.hh │ ├── Relation.hh │ ├── Varint.hh │ └── betterassert.hh ├── src ├── CoCondition.cc ├── CoroLifecycle.cc ├── Coroutine.cc ├── Error.cc ├── Future.cc ├── Internal.hh ├── Scheduler.cc ├── Select.cc ├── Task.cc ├── io │ ├── Framer.cc │ ├── HTTPConnection.cc │ ├── HTTPHandler.cc │ ├── HTTPParser.cc │ ├── ISocket.cc │ ├── IStream.cc │ ├── Process.cc │ ├── URL.cc │ ├── WebSocket.cc │ ├── WebSocketProtocol.hh │ ├── apple │ │ └── NWConnection.cc │ ├── blip │ │ ├── BLIPIO.cc │ │ ├── Codec.cc │ │ ├── Codec.hh │ │ ├── Codec_Impl.hh │ │ ├── Connection.cc │ │ ├── Dispatcher.cc │ │ ├── Message.cc │ │ ├── MessageBuilder.cc │ │ ├── MessageOut.cc │ │ ├── MessageOut.hh │ │ ├── README.md │ │ ├── licenses │ │ │ ├── APL2.txt │ │ │ └── BSL-Couchbase.txt │ │ └── miniz_export.h │ ├── esp32 │ │ ├── Backtrace+ESP32.cc │ │ ├── CMakeLists.txt │ │ ├── ESPAddrInfo.cc │ │ ├── ESPBase.cc │ │ ├── ESPBase.hh │ │ ├── ESPEventLoop.cc │ │ ├── ESPTCPSocket.cc │ │ ├── ESPTCPSocket.hh │ │ └── README.md │ ├── mbed │ │ ├── TLSContext.hh │ │ └── TLSSocket.cc │ └── uv │ │ ├── AddrInfo.cc │ │ ├── FileStream.cc │ │ ├── Filesystem.cc │ │ ├── LocalSocket.cc │ │ ├── Pipe.cc │ │ ├── Stream.cc │ │ ├── TCPServer.cc │ │ ├── TCPSocket.cc │ │ ├── TCPSocket.hh │ │ ├── UVBase.cc │ │ └── UVInternal.hh └── support │ ├── Availability.hh │ ├── Backtrace.cc │ ├── Backtrace_Apple.cc │ ├── Backtrace_cpptrace.cc │ ├── Endian.hh │ ├── Logging.cc │ ├── Memoized.cc │ ├── Memoized.hh │ ├── MiniFormat.cc │ ├── MiniLogger.cc │ ├── MiniOStream.cc │ ├── StringUtils.cc │ ├── StringUtils.hh │ ├── Varint.cc │ ├── asprintf.c │ ├── asprintf.h │ ├── betterassert.cc │ ├── empty.c │ └── vasprintf-msvc.c ├── tests ├── ESP32 │ ├── CMakeLists.txt │ ├── README.md │ ├── main │ │ ├── CMakeLists.txt │ │ ├── Kconfig.projbuild │ │ └── test_esp32.cc │ └── sdkconfig ├── Info.plist ├── demo_blipclient.cc ├── demo_client.cc ├── demo_server.cc ├── test_blip.cc ├── test_codec.cc ├── test_generator.cc ├── test_http.cc ├── test_io.cc ├── test_mini.cc ├── test_pubsub.cc ├── tests.cc ├── tests.hh └── testserver.entitlements ├── vendor ├── catch2 │ ├── ConsoleReporterPlus.cc │ ├── ConsoleReporterPlus.hh │ ├── catch_amalgamated.cpp │ └── catch_amalgamated.hpp └── llhttp │ ├── .gitignore │ ├── CMakeLists.txt │ ├── LICENSE-MIT │ ├── README.md │ ├── VERSION │ ├── common.gypi │ ├── include │ └── llhttp.h │ ├── libllhttp.pc.in │ ├── llhttp.gyp │ └── src │ ├── api.c │ ├── http.c │ └── llhttp.c └── xcconfigs ├── Executable.xcconfig ├── Project-Debug.xcconfig ├── Project-Release.xcconfig ├── Project.xcconfig ├── StaticLib.xcconfig ├── Tests.xcconfig ├── XcodeWarnings.xcconfig └── llhttp.xcconfig /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | libs/ 2 | build_cmake/ 3 | sdkconfig.old 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /ESP32/hello_world/pytest_hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/ESP32/hello_world/pytest_hello_world.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/README.md -------------------------------------------------------------------------------- /crouton.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/crouton.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /crouton.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/crouton.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /crouton.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/crouton.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /crouton.xcodeproj/xcshareddata/xcschemes/All Crouton.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/crouton.xcodeproj/xcshareddata/xcschemes/All Crouton.xcscheme -------------------------------------------------------------------------------- /crouton.xcodeproj/xcshareddata/xcschemes/BLIP.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/crouton.xcodeproj/xcshareddata/xcschemes/BLIP.xcscheme -------------------------------------------------------------------------------- /crouton.xcodeproj/xcshareddata/xcschemes/Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/crouton.xcodeproj/xcshareddata/xcschemes/Tests.xcscheme -------------------------------------------------------------------------------- /crouton.xcodeproj/xcshareddata/xcschemes/demo_blipclient.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/crouton.xcodeproj/xcshareddata/xcschemes/demo_blipclient.xcscheme -------------------------------------------------------------------------------- /crouton.xcodeproj/xcshareddata/xcschemes/demo_client.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/crouton.xcodeproj/xcshareddata/xcschemes/demo_client.xcscheme -------------------------------------------------------------------------------- /crouton.xcodeproj/xcshareddata/xcschemes/demo_server.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/crouton.xcodeproj/xcshareddata/xcschemes/demo_server.xcscheme -------------------------------------------------------------------------------- /docs/Awaitable Types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/docs/Awaitable Types.md -------------------------------------------------------------------------------- /docs/Coroutine Types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/docs/Coroutine Types.md -------------------------------------------------------------------------------- /docs/Errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/docs/Errors.md -------------------------------------------------------------------------------- /docs/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/docs/Introduction.md -------------------------------------------------------------------------------- /docs/Mini.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/docs/Mini.md -------------------------------------------------------------------------------- /docs/PubSub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/docs/PubSub.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/Results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/docs/Results.md -------------------------------------------------------------------------------- /include/crouton/Actor.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/Actor.hh -------------------------------------------------------------------------------- /include/crouton/Awaitable.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/Awaitable.hh -------------------------------------------------------------------------------- /include/crouton/CoCondition.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/CoCondition.hh -------------------------------------------------------------------------------- /include/crouton/CoroLifecycle.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/CoroLifecycle.hh -------------------------------------------------------------------------------- /include/crouton/Coroutine.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/Coroutine.hh -------------------------------------------------------------------------------- /include/crouton/Crouton.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/Crouton.hh -------------------------------------------------------------------------------- /include/crouton/CroutonFwd.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/CroutonFwd.hh -------------------------------------------------------------------------------- /include/crouton/Error.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/Error.hh -------------------------------------------------------------------------------- /include/crouton/EventLoop.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/EventLoop.hh -------------------------------------------------------------------------------- /include/crouton/Future.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/Future.hh -------------------------------------------------------------------------------- /include/crouton/Generator.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/Generator.hh -------------------------------------------------------------------------------- /include/crouton/Misc.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/Misc.hh -------------------------------------------------------------------------------- /include/crouton/Producer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/Producer.hh -------------------------------------------------------------------------------- /include/crouton/PubSub.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/PubSub.hh -------------------------------------------------------------------------------- /include/crouton/Queue.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/Queue.hh -------------------------------------------------------------------------------- /include/crouton/Result.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/Result.hh -------------------------------------------------------------------------------- /include/crouton/Scheduler.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/Scheduler.hh -------------------------------------------------------------------------------- /include/crouton/Select.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/Select.hh -------------------------------------------------------------------------------- /include/crouton/Task.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/Task.hh -------------------------------------------------------------------------------- /include/crouton/io/AddrInfo.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/io/AddrInfo.hh -------------------------------------------------------------------------------- /include/crouton/io/FileStream.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/io/FileStream.hh -------------------------------------------------------------------------------- /include/crouton/io/Filesystem.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/io/Filesystem.hh -------------------------------------------------------------------------------- /include/crouton/io/Framer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/io/Framer.hh -------------------------------------------------------------------------------- /include/crouton/io/HTTPConnection.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/io/HTTPConnection.hh -------------------------------------------------------------------------------- /include/crouton/io/HTTPHandler.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/io/HTTPHandler.hh -------------------------------------------------------------------------------- /include/crouton/io/HTTPParser.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/io/HTTPParser.hh -------------------------------------------------------------------------------- /include/crouton/io/ISocket.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/io/ISocket.hh -------------------------------------------------------------------------------- /include/crouton/io/IStream.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/io/IStream.hh -------------------------------------------------------------------------------- /include/crouton/io/LocalSocket.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/io/LocalSocket.hh -------------------------------------------------------------------------------- /include/crouton/io/Pipe.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/io/Pipe.hh -------------------------------------------------------------------------------- /include/crouton/io/Process.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/io/Process.hh -------------------------------------------------------------------------------- /include/crouton/io/Stream.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/io/Stream.hh -------------------------------------------------------------------------------- /include/crouton/io/TCPServer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/io/TCPServer.hh -------------------------------------------------------------------------------- /include/crouton/io/URL.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/io/URL.hh -------------------------------------------------------------------------------- /include/crouton/io/WebSocket.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/io/WebSocket.hh -------------------------------------------------------------------------------- /include/crouton/io/apple/NWConnection.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/io/apple/NWConnection.hh -------------------------------------------------------------------------------- /include/crouton/io/blip/BLIP.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/io/blip/BLIP.hh -------------------------------------------------------------------------------- /include/crouton/io/blip/BLIPIO.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/io/blip/BLIPIO.hh -------------------------------------------------------------------------------- /include/crouton/io/blip/Connection.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/io/blip/Connection.hh -------------------------------------------------------------------------------- /include/crouton/io/blip/Dispatcher.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/io/blip/Dispatcher.hh -------------------------------------------------------------------------------- /include/crouton/io/blip/Message.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/io/blip/Message.hh -------------------------------------------------------------------------------- /include/crouton/io/blip/MessageBuilder.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/io/blip/MessageBuilder.hh -------------------------------------------------------------------------------- /include/crouton/io/blip/Protocol.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/io/blip/Protocol.hh -------------------------------------------------------------------------------- /include/crouton/io/mbed/TLSSocket.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/io/mbed/TLSSocket.hh -------------------------------------------------------------------------------- /include/crouton/io/uv/UVBase.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/io/uv/UVBase.hh -------------------------------------------------------------------------------- /include/crouton/util/Backtrace.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/util/Backtrace.hh -------------------------------------------------------------------------------- /include/crouton/util/Base.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/util/Base.hh -------------------------------------------------------------------------------- /include/crouton/util/Bytes.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/util/Bytes.hh -------------------------------------------------------------------------------- /include/crouton/util/Defer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/util/Defer.hh -------------------------------------------------------------------------------- /include/crouton/util/LinkedList.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/util/LinkedList.hh -------------------------------------------------------------------------------- /include/crouton/util/Logging.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/util/Logging.hh -------------------------------------------------------------------------------- /include/crouton/util/MiniFormat.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/util/MiniFormat.hh -------------------------------------------------------------------------------- /include/crouton/util/MiniLogger.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/util/MiniLogger.hh -------------------------------------------------------------------------------- /include/crouton/util/MiniOStream.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/util/MiniOStream.hh -------------------------------------------------------------------------------- /include/crouton/util/Relation.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/util/Relation.hh -------------------------------------------------------------------------------- /include/crouton/util/Varint.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/util/Varint.hh -------------------------------------------------------------------------------- /include/crouton/util/betterassert.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/include/crouton/util/betterassert.hh -------------------------------------------------------------------------------- /src/CoCondition.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/CoCondition.cc -------------------------------------------------------------------------------- /src/CoroLifecycle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/CoroLifecycle.cc -------------------------------------------------------------------------------- /src/Coroutine.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/Coroutine.cc -------------------------------------------------------------------------------- /src/Error.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/Error.cc -------------------------------------------------------------------------------- /src/Future.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/Future.cc -------------------------------------------------------------------------------- /src/Internal.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/Internal.hh -------------------------------------------------------------------------------- /src/Scheduler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/Scheduler.cc -------------------------------------------------------------------------------- /src/Select.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/Select.cc -------------------------------------------------------------------------------- /src/Task.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/Task.cc -------------------------------------------------------------------------------- /src/io/Framer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/Framer.cc -------------------------------------------------------------------------------- /src/io/HTTPConnection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/HTTPConnection.cc -------------------------------------------------------------------------------- /src/io/HTTPHandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/HTTPHandler.cc -------------------------------------------------------------------------------- /src/io/HTTPParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/HTTPParser.cc -------------------------------------------------------------------------------- /src/io/ISocket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/ISocket.cc -------------------------------------------------------------------------------- /src/io/IStream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/IStream.cc -------------------------------------------------------------------------------- /src/io/Process.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/Process.cc -------------------------------------------------------------------------------- /src/io/URL.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/URL.cc -------------------------------------------------------------------------------- /src/io/WebSocket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/WebSocket.cc -------------------------------------------------------------------------------- /src/io/WebSocketProtocol.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/WebSocketProtocol.hh -------------------------------------------------------------------------------- /src/io/apple/NWConnection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/apple/NWConnection.cc -------------------------------------------------------------------------------- /src/io/blip/BLIPIO.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/blip/BLIPIO.cc -------------------------------------------------------------------------------- /src/io/blip/Codec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/blip/Codec.cc -------------------------------------------------------------------------------- /src/io/blip/Codec.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/blip/Codec.hh -------------------------------------------------------------------------------- /src/io/blip/Codec_Impl.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/blip/Codec_Impl.hh -------------------------------------------------------------------------------- /src/io/blip/Connection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/blip/Connection.cc -------------------------------------------------------------------------------- /src/io/blip/Dispatcher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/blip/Dispatcher.cc -------------------------------------------------------------------------------- /src/io/blip/Message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/blip/Message.cc -------------------------------------------------------------------------------- /src/io/blip/MessageBuilder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/blip/MessageBuilder.cc -------------------------------------------------------------------------------- /src/io/blip/MessageOut.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/blip/MessageOut.cc -------------------------------------------------------------------------------- /src/io/blip/MessageOut.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/blip/MessageOut.hh -------------------------------------------------------------------------------- /src/io/blip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/blip/README.md -------------------------------------------------------------------------------- /src/io/blip/licenses/APL2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/blip/licenses/APL2.txt -------------------------------------------------------------------------------- /src/io/blip/licenses/BSL-Couchbase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/blip/licenses/BSL-Couchbase.txt -------------------------------------------------------------------------------- /src/io/blip/miniz_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/blip/miniz_export.h -------------------------------------------------------------------------------- /src/io/esp32/Backtrace+ESP32.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/esp32/Backtrace+ESP32.cc -------------------------------------------------------------------------------- /src/io/esp32/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/esp32/CMakeLists.txt -------------------------------------------------------------------------------- /src/io/esp32/ESPAddrInfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/esp32/ESPAddrInfo.cc -------------------------------------------------------------------------------- /src/io/esp32/ESPBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/esp32/ESPBase.cc -------------------------------------------------------------------------------- /src/io/esp32/ESPBase.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/esp32/ESPBase.hh -------------------------------------------------------------------------------- /src/io/esp32/ESPEventLoop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/esp32/ESPEventLoop.cc -------------------------------------------------------------------------------- /src/io/esp32/ESPTCPSocket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/esp32/ESPTCPSocket.cc -------------------------------------------------------------------------------- /src/io/esp32/ESPTCPSocket.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/esp32/ESPTCPSocket.hh -------------------------------------------------------------------------------- /src/io/esp32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/esp32/README.md -------------------------------------------------------------------------------- /src/io/mbed/TLSContext.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/mbed/TLSContext.hh -------------------------------------------------------------------------------- /src/io/mbed/TLSSocket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/mbed/TLSSocket.cc -------------------------------------------------------------------------------- /src/io/uv/AddrInfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/uv/AddrInfo.cc -------------------------------------------------------------------------------- /src/io/uv/FileStream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/uv/FileStream.cc -------------------------------------------------------------------------------- /src/io/uv/Filesystem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/uv/Filesystem.cc -------------------------------------------------------------------------------- /src/io/uv/LocalSocket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/uv/LocalSocket.cc -------------------------------------------------------------------------------- /src/io/uv/Pipe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/uv/Pipe.cc -------------------------------------------------------------------------------- /src/io/uv/Stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/uv/Stream.cc -------------------------------------------------------------------------------- /src/io/uv/TCPServer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/uv/TCPServer.cc -------------------------------------------------------------------------------- /src/io/uv/TCPSocket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/uv/TCPSocket.cc -------------------------------------------------------------------------------- /src/io/uv/TCPSocket.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/uv/TCPSocket.hh -------------------------------------------------------------------------------- /src/io/uv/UVBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/uv/UVBase.cc -------------------------------------------------------------------------------- /src/io/uv/UVInternal.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/io/uv/UVInternal.hh -------------------------------------------------------------------------------- /src/support/Availability.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/support/Availability.hh -------------------------------------------------------------------------------- /src/support/Backtrace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/support/Backtrace.cc -------------------------------------------------------------------------------- /src/support/Backtrace_Apple.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/support/Backtrace_Apple.cc -------------------------------------------------------------------------------- /src/support/Backtrace_cpptrace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/support/Backtrace_cpptrace.cc -------------------------------------------------------------------------------- /src/support/Endian.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/support/Endian.hh -------------------------------------------------------------------------------- /src/support/Logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/support/Logging.cc -------------------------------------------------------------------------------- /src/support/Memoized.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/support/Memoized.cc -------------------------------------------------------------------------------- /src/support/Memoized.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/support/Memoized.hh -------------------------------------------------------------------------------- /src/support/MiniFormat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/support/MiniFormat.cc -------------------------------------------------------------------------------- /src/support/MiniLogger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/support/MiniLogger.cc -------------------------------------------------------------------------------- /src/support/MiniOStream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/support/MiniOStream.cc -------------------------------------------------------------------------------- /src/support/StringUtils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/support/StringUtils.cc -------------------------------------------------------------------------------- /src/support/StringUtils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/support/StringUtils.hh -------------------------------------------------------------------------------- /src/support/Varint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/support/Varint.cc -------------------------------------------------------------------------------- /src/support/asprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/support/asprintf.c -------------------------------------------------------------------------------- /src/support/asprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/support/asprintf.h -------------------------------------------------------------------------------- /src/support/betterassert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/support/betterassert.cc -------------------------------------------------------------------------------- /src/support/empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/support/empty.c -------------------------------------------------------------------------------- /src/support/vasprintf-msvc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/src/support/vasprintf-msvc.c -------------------------------------------------------------------------------- /tests/ESP32/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/tests/ESP32/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ESP32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/tests/ESP32/README.md -------------------------------------------------------------------------------- /tests/ESP32/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/tests/ESP32/main/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ESP32/main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/tests/ESP32/main/Kconfig.projbuild -------------------------------------------------------------------------------- /tests/ESP32/main/test_esp32.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/tests/ESP32/main/test_esp32.cc -------------------------------------------------------------------------------- /tests/ESP32/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/tests/ESP32/sdkconfig -------------------------------------------------------------------------------- /tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/tests/Info.plist -------------------------------------------------------------------------------- /tests/demo_blipclient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/tests/demo_blipclient.cc -------------------------------------------------------------------------------- /tests/demo_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/tests/demo_client.cc -------------------------------------------------------------------------------- /tests/demo_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/tests/demo_server.cc -------------------------------------------------------------------------------- /tests/test_blip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/tests/test_blip.cc -------------------------------------------------------------------------------- /tests/test_codec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/tests/test_codec.cc -------------------------------------------------------------------------------- /tests/test_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/tests/test_generator.cc -------------------------------------------------------------------------------- /tests/test_http.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/tests/test_http.cc -------------------------------------------------------------------------------- /tests/test_io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/tests/test_io.cc -------------------------------------------------------------------------------- /tests/test_mini.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/tests/test_mini.cc -------------------------------------------------------------------------------- /tests/test_pubsub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/tests/test_pubsub.cc -------------------------------------------------------------------------------- /tests/tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/tests/tests.cc -------------------------------------------------------------------------------- /tests/tests.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/tests/tests.hh -------------------------------------------------------------------------------- /tests/testserver.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/tests/testserver.entitlements -------------------------------------------------------------------------------- /vendor/catch2/ConsoleReporterPlus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/vendor/catch2/ConsoleReporterPlus.cc -------------------------------------------------------------------------------- /vendor/catch2/ConsoleReporterPlus.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/vendor/catch2/ConsoleReporterPlus.hh -------------------------------------------------------------------------------- /vendor/catch2/catch_amalgamated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/vendor/catch2/catch_amalgamated.cpp -------------------------------------------------------------------------------- /vendor/catch2/catch_amalgamated.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/vendor/catch2/catch_amalgamated.hpp -------------------------------------------------------------------------------- /vendor/llhttp/.gitignore: -------------------------------------------------------------------------------- 1 | libllhttp.pc 2 | -------------------------------------------------------------------------------- /vendor/llhttp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/vendor/llhttp/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/llhttp/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/vendor/llhttp/LICENSE-MIT -------------------------------------------------------------------------------- /vendor/llhttp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/vendor/llhttp/README.md -------------------------------------------------------------------------------- /vendor/llhttp/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/vendor/llhttp/VERSION -------------------------------------------------------------------------------- /vendor/llhttp/common.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/vendor/llhttp/common.gypi -------------------------------------------------------------------------------- /vendor/llhttp/include/llhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/vendor/llhttp/include/llhttp.h -------------------------------------------------------------------------------- /vendor/llhttp/libllhttp.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/vendor/llhttp/libllhttp.pc.in -------------------------------------------------------------------------------- /vendor/llhttp/llhttp.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/vendor/llhttp/llhttp.gyp -------------------------------------------------------------------------------- /vendor/llhttp/src/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/vendor/llhttp/src/api.c -------------------------------------------------------------------------------- /vendor/llhttp/src/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/vendor/llhttp/src/http.c -------------------------------------------------------------------------------- /vendor/llhttp/src/llhttp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/vendor/llhttp/src/llhttp.c -------------------------------------------------------------------------------- /xcconfigs/Executable.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/xcconfigs/Executable.xcconfig -------------------------------------------------------------------------------- /xcconfigs/Project-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/xcconfigs/Project-Debug.xcconfig -------------------------------------------------------------------------------- /xcconfigs/Project-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/xcconfigs/Project-Release.xcconfig -------------------------------------------------------------------------------- /xcconfigs/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/xcconfigs/Project.xcconfig -------------------------------------------------------------------------------- /xcconfigs/StaticLib.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/xcconfigs/StaticLib.xcconfig -------------------------------------------------------------------------------- /xcconfigs/Tests.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/xcconfigs/Tests.xcconfig -------------------------------------------------------------------------------- /xcconfigs/XcodeWarnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/xcconfigs/XcodeWarnings.xcconfig -------------------------------------------------------------------------------- /xcconfigs/llhttp.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/crouton/HEAD/xcconfigs/llhttp.xcconfig --------------------------------------------------------------------------------