-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
modified: WebSockets.jl move HTTP imports to HTTP.jl modified: HTTP.jl Import 25 functions and types from 0.7.0 locations Use imports without qualifications. Duck-type _openstream 'http' -> 'stream' or 'r', depending on what it can be. Use 'getrawstream', since stream now can be a Transaction. Don't chek for excess bytes, remove rest of issue #114 check Update inline listen example. Reintroduce rethrowing errors from upgrade 'Where called from' for functions inline docs. Add alternative method for is_upgrade for a stream. Added own version of ServerOptions due to missing union type in HTTP. The union type prevents malfunction with MbedTLS types. Removed dead 'while' loop in serve(..) New union type for server reference. Attempts to control garbage collection when releasing the safe reference. There are still warnings when a server is closed. Anonymous coroutine in 'listen' -> named inner function '_servercoroutine'. Added own default throttling function 'checkratelimit!', avoid terminal clutter. Remove type PatchedIO (issue #114). modified: REQUIRE -> HTTP 0.7.0 0.7.99 modified: test/listen_test.jl Restructure imports modified: test/listen_test.jl Restructure imports new: test/client_server_functions.jl new: test/client_serverWS_test.jl Extensive message tests new: test/client_listen_test.jl Same as serverWS, listen syntax modified: test/error_test.jl Restructure imports modified: test/frametest.jl Restructure imports new: test/handshaketest_functions.jl modified: test/handshaketest.jl new: test/logformat.jl Suppress HTTP.Server terminal output Add time and location logs modified: test/REQUIRE Don't require HTTP as a separate package. modified: test/runtests.jl Blue test headers new: test/throttling_test.jl modified: .travis.yml Don't test nightly modified: appeyor.yml Allow test failures on nightly modified: chat_explore.jl Restructure imports modified: chat_explore.jl Restructure imports, remove HTTP.Server messages modified: client_repl_input.jl Restructure imports modified: client_repl_input.jl Restructure imports modified: minimal_server.jl Restructure imports modified: minimal_listen_do_syntax.jl New syntax, imports modified: minimal_server.jl Restructure imports
- Loading branch information
Showing
25 changed files
with
1,072 additions
and
605 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,6 @@ os: | |
julia: | ||
- 0.7 | ||
- 1.0 | ||
- nightly | ||
sudo: false | ||
notifications: | ||
email: false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
julia 0.7 | ||
julia 0.7 1.99 | ||
MbedTLS | ||
HTTP 0.6.14 0.6.15 | ||
|
||
HTTP 0.7.0 0.7.99 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.