aboutsummaryrefslogtreecommitdiffstats
path: root/components/net/websocket_loader.rs
Commit message (Expand)AuthorAgeFilesLines
* Use `ROUTER::add_typed_route` instead of `ROUTER::add_route` everywhere (#33866)Simon Wülker2024-10-181-3/+3
* dependencies: Upgrade `cookie` and rename Servo's `Cookie` to `ServoCookie` (...Martin Robinson2024-07-261-2/+2
* Net: fold websocket and http tokio runtime into one (#31771)tannal2024-03-211-11/+2
* clippy: fix warnings in components/net (#31564)eri2024-03-101-3/+3
* Strict import formatting (grouping and granularity) (#30325)Samson2023-09-111-11/+11
* remove `extern crate` (#30311)Samson2023-09-081-0/+2
* Switch to rustls and webpki-roots (#30025)Martin Robinson2023-08-081-23/+17
* bump base64 from 0.10 to 0.21 (#29804)Tuna2023-08-021-1/+2
* Update tungsteniteFabrice Desré2023-05-201-59/+43
* Upgrade HyperNaveen Gattu2022-01-161-3/+3
* net: Remove explicit Host header from websocket connection.Josh Matthews2020-07-161-26/+1
* net: Replace ws-rs with async-tungstenite.Josh Matthews2020-07-081-241/+435
* net: Allow SSL websockets to use dynamic list of certs as well.Josh Matthews2020-06-091-2/+12
* net: Pass certs that fail the SSL handshake out of the network layer.Josh Matthews2020-06-091-2/+3
* net: Add an SSL verification callback to support checking a dynamic list of c...Josh Matthews2020-06-091-2/+2
* Remove duplicate Host header from initial websocket request.Josh Matthews2020-05-221-22/+0
* Don't panic when dealing with disconnected websockets.Josh Matthews2020-02-251-7/+17
* Cookie header values can be utf8Patrick Shaughnessy2020-01-281-1/+1
* Cookies are now expired immediately before each lookupPatrick Shaughnessy2020-01-241-0/+1
* Fix HSTSJan Andre Ikenmeyer2020-01-071-0/+17
* Add ALPN and signature algorithms to OpenSSL configJan Andre Ikenmeyer2019-11-301-3/+4
* use ipc router to handle ws dom-action messagesGregory Terzian2019-10-091-4/+7
* Upgrade headers, headers-core, and hyper_serde.Josh Matthews2019-06-131-1/+1
* Net: removed opts::get() usageoneturkmen2019-06-061-2/+4
* Implementing the builder pattern for RequestInitLucas Fantacuci2019-04-101-13/+15
* Remove redundant `.clone()`sShotaro Yamada2018-12-111-1/+1
* Update MPL license to https (part 4)Jan Andre Ikenmeyer2018-11-191-1/+1
* Reorder importsPyfisch2018-11-061-4/+7
* Sort `use` statementsSimon Sapin2018-11-061-2/+2
* `cargo fix --edition`Simon Sapin2018-11-061-5/+5
* Rustfmt net cratePyfisch2018-11-031-104/+133
* Update hyper to 0.12Bastien Orivel2018-11-011-15/+20
* The WS protocols should be case sensitive, not insensitiveBastien Orivel2018-08-161-3/+3
* Handle secure websocketsBastien Orivel2018-08-161-0/+29
* Replace servo-websocket by wsBastien Orivel2018-08-151-603/+151
* Update servo-websocket to 0.21Bastien Orivel2018-03-151-18/+33
* Upgrade to rustc 1.23.0-nightly (02004ef78 2017-11-08)Simon Sapin2017-11-091-1/+0
* Merge functionality of WebsocketConnect into FetchKeith Yeung2017-10-241-23/+24
* Merge request type and destinationKeith Yeung2017-10-231-3/+3
* Rename basic fetch to scheme fetchKeith Yeung2017-08-081-3/+3
* Move hosts module into net crate. Remove obsolete functions.Josh Matthews2017-04-061-1/+1
* Pass the url by value to websocket_loader::main_fetchAnthony Ramine2017-04-051-6/+6
* Use set_default_accept in websocket_loaderAnthony Ramine2017-04-041-17/+5
* Properly set Accept-Language in websocket_loaderAnthony Ramine2017-04-041-2/+2
* Use cookie::from_cookie_string in websocket_loaderAnthony Ramine2017-04-041-5/+2
* Pass http_state around in websocket_loaderAnthony Ramine2017-04-031-18/+17
* Move Arc out of HttpStateAnthony Ramine2017-04-031-10/+10
* Update Hyper and OpenSSLddh2017-03-311-2/+5
* Disable wss supportAnthony Ramine2017-03-311-38/+24
* Make the WebSocket handshake ourselves to ease switching libsAnthony Ramine2017-03-291-67/+554