Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update tungstenite | Fabrice Desré | 2023-05-20 | 1 | -59/+43 |
| | |||||
* | Upgrade Hyper | Naveen Gattu | 2022-01-16 | 1 | -3/+3 |
| | |||||
* | net: Remove explicit Host header from websocket connection. | Josh Matthews | 2020-07-16 | 1 | -26/+1 |
| | |||||
* | net: Replace ws-rs with async-tungstenite. | Josh Matthews | 2020-07-08 | 1 | -241/+435 |
| | |||||
* | net: Allow SSL websockets to use dynamic list of certs as well. | Josh Matthews | 2020-06-09 | 1 | -2/+12 |
| | |||||
* | net: Pass certs that fail the SSL handshake out of the network layer. | Josh Matthews | 2020-06-09 | 1 | -2/+3 |
| | |||||
* | net: Add an SSL verification callback to support checking a dynamic list of ↵ | Josh Matthews | 2020-06-09 | 1 | -2/+2 |
| | | | | certs. | ||||
* | Remove duplicate Host header from initial websocket request. | Josh Matthews | 2020-05-22 | 1 | -22/+0 |
| | |||||
* | Don't panic when dealing with disconnected websockets. | Josh Matthews | 2020-02-25 | 1 | -7/+17 |
| | |||||
* | Cookie header values can be utf8 | Patrick Shaughnessy | 2020-01-28 | 1 | -1/+1 |
| | |||||
* | Cookies are now expired immediately before each lookup | Patrick Shaughnessy | 2020-01-24 | 1 | -0/+1 |
| | |||||
* | Fix HSTS | Jan Andre Ikenmeyer | 2020-01-07 | 1 | -0/+17 |
| | |||||
* | Add ALPN and signature algorithms to OpenSSL config | Jan Andre Ikenmeyer | 2019-11-30 | 1 | -3/+4 |
| | |||||
* | use ipc router to handle ws dom-action messages | Gregory Terzian | 2019-10-09 | 1 | -4/+7 |
| | |||||
* | Upgrade headers, headers-core, and hyper_serde. | Josh Matthews | 2019-06-13 | 1 | -1/+1 |
| | |||||
* | Net: removed opts::get() usage | oneturkmen | 2019-06-06 | 1 | -2/+4 |
| | |||||
* | Implementing the builder pattern for RequestInit | Lucas Fantacuci | 2019-04-10 | 1 | -13/+15 |
| | |||||
* | Remove redundant `.clone()`s | Shotaro Yamada | 2018-12-11 | 1 | -1/+1 |
| | |||||
* | Update MPL license to https (part 4) | Jan Andre Ikenmeyer | 2018-11-19 | 1 | -1/+1 |
| | |||||
* | Reorder imports | Pyfisch | 2018-11-06 | 1 | -4/+7 |
| | |||||
* | Sort `use` statements | Simon Sapin | 2018-11-06 | 1 | -2/+2 |
| | |||||
* | `cargo fix --edition` | Simon Sapin | 2018-11-06 | 1 | -5/+5 |
| | |||||
* | Rustfmt net crate | Pyfisch | 2018-11-03 | 1 | -104/+133 |
| | |||||
* | Update hyper to 0.12 | Bastien Orivel | 2018-11-01 | 1 | -15/+20 |
| | |||||
* | The WS protocols should be case sensitive, not insensitive | Bastien Orivel | 2018-08-16 | 1 | -3/+3 |
| | |||||
* | Handle secure websockets | Bastien Orivel | 2018-08-16 | 1 | -0/+29 |
| | | | | Fixes #20816 | ||||
* | Replace servo-websocket by ws | Bastien Orivel | 2018-08-15 | 1 | -603/+151 |
| | | | | | | This is heavily based on previous work done in #16012. Fixes #14517 | ||||
* | Update servo-websocket to 0.21 | Bastien Orivel | 2018-03-15 | 1 | -18/+33 |
| | |||||
* | Upgrade to rustc 1.23.0-nightly (02004ef78 2017-11-08) | Simon Sapin | 2017-11-09 | 1 | -1/+0 |
| | |||||
* | Merge functionality of WebsocketConnect into Fetch | Keith Yeung | 2017-10-24 | 1 | -23/+24 |
| | |||||
* | Merge request type and destination | Keith Yeung | 2017-10-23 | 1 | -3/+3 |
| | |||||
* | Rename basic fetch to scheme fetch | Keith Yeung | 2017-08-08 | 1 | -3/+3 |
| | |||||
* | Move hosts module into net crate. Remove obsolete functions. | Josh Matthews | 2017-04-06 | 1 | -1/+1 |
| | |||||
* | Pass the url by value to websocket_loader::main_fetch | Anthony Ramine | 2017-04-05 | 1 | -6/+6 |
| | |||||
* | Use set_default_accept in websocket_loader | Anthony Ramine | 2017-04-04 | 1 | -17/+5 |
| | |||||
* | Properly set Accept-Language in websocket_loader | Anthony Ramine | 2017-04-04 | 1 | -2/+2 |
| | |||||
* | Use cookie::from_cookie_string in websocket_loader | Anthony Ramine | 2017-04-04 | 1 | -5/+2 |
| | |||||
* | Pass http_state around in websocket_loader | Anthony Ramine | 2017-04-03 | 1 | -18/+17 |
| | |||||
* | Move Arc out of HttpState | Anthony Ramine | 2017-04-03 | 1 | -10/+10 |
| | |||||
* | Update Hyper and OpenSSL | ddh | 2017-03-31 | 1 | -2/+5 |
| | |||||
* | Disable wss support | Anthony Ramine | 2017-03-31 | 1 | -38/+24 |
| | | | | | | None of the existing websocket libraries are currently able to cope with openssl 0.9 and be featureful, so we are disabling wss for now to land openssl 0.9. | ||||
* | Make the WebSocket handshake ourselves to ease switching libs | Anthony Ramine | 2017-03-29 | 1 | -67/+554 |
| | | | | | | We need to switch to tungstenite to finally update openssl, this commit rewrites the whole websocket infrastructure to properly follow the Fetch spec and to make switching to a different websocket library easier. | ||||
* | Put websocket_loader::init first in its module | Anthony Ramine | 2017-03-26 | 1 | -78/+78 |
| | |||||
* | Rework replace_hosts and host_replacement | Anthony Ramine | 2017-03-26 | 1 | -2/+2 |
| | | | | They do less cloning now. | ||||
* | Remove some useless thread spawning in websocket_loader | Anthony Ramine | 2017-03-24 | 1 | -23/+18 |
| | |||||
* | Only pass the protocol in use in to establish a WS connection | Anthony Ramine | 2017-03-24 | 1 | -10/+14 |
| | |||||
* | Properly follow the spec in WebSocket::Constructor | Anthony Ramine | 2017-03-24 | 1 | -44/+64 |
| | |||||
* | Make ServoUrl::as_url return a &Url | Anthony Ramine | 2017-03-23 | 1 | -1/+1 |
| | |||||
* | Removed util. | Alan Jeffrey | 2016-12-14 | 1 | -3/+2 |
| | |||||
* | Urlmageddon: Use refcounted urls more often. | Emilio Cobos Álvarez | 2016-11-17 | 1 | -3/+3 |
| |