aboutsummaryrefslogtreecommitdiffstats
path: root/components/net
Commit message (Collapse)AuthorAgeFilesLines
* Update parse-hosts.Clar Charr2017-07-062-14/+5
|
* Introduce service-worker modeKeith Yeung2017-06-221-9/+24
|
* UntrySimon Sapin2017-06-185-24/+24
|
* Remove explicit dependencies on serde_deriveSimon Sapin2017-06-162-4/+1
|
* Bump serde to 1.0Bastien Orivel2017-06-162-7/+7
|
* Update WR (CPU text optimizations, image format renames).Glenn Watson2017-06-161-3/+3
|
* Update Rust nightly to 1.19.0-nightly (2416e222e 2017-06-09)Anthony Ramine2017-06-092-2/+2
|
* Implemented the plumbing for paint worklets.Alan Jeffrey2017-06-071-21/+15
|
* Read 32kb from the network at a time.Josh Matthews2017-06-051-1/+1
|
* Revert "Update Rust nightly to 1.19.0-nightly (6165203c4 2017-06-03)"Anthony Ramine2017-06-032-2/+2
| | | | This reverts commit f081380dc03dba9664877df2829097f32c40694a.
* Update Rust nightly to 1.19.0-nightly (6165203c4 2017-06-03)Anthony Ramine2017-06-032-2/+2
|
* Redirect document loads manuallyNikhil Shagrithaya2017-05-313-17/+38
|
* Update dependenciesMatt Brubeck2017-05-251-1/+1
|
* Use the origin of the actual image response when determining if a canvas is ↵SendilKumar N2017-05-191-14/+41
| | | | origin clean.
* Ignore mime type parameters in nosniffFabrice Desré2017-05-151-4/+4
| | | | | | | | | This patch implements the following changes: - Only check for the toplevel/sublevel part of the mime type when deciding if it's a js or css resource, ignoring the mime parameters. - Fix the wpt tests that did not escape url parameters properly and also used an invalid syntax for the mime parameter. - Update the wpt manifest.
* Use hash2 instead of deprecated hashKsbugbee2017-05-081-2/+2
| | | | | | Removed X's from PULL_REQUEST_TEMPLATE.md Commented changes
* Bump base64 to 0.4.2Alice Maz2017-05-031-1/+1
|
* Fix indentation errors in servo rust code that tidy now finds.coalman2017-04-182-2/+2
|
* Update WR (IPC profiling, RG8 image support).Glenn Watson2017-04-181-0/+1
|
* Show HTTP response headers in debug output.Josh Matthews2017-04-171-0/+7
|
* Do not return an error for non-GET data: requests (fixes #13293)Anthony Ramine2017-04-081-12/+8
|
* Kill Request::omit_origin_headerAnthony Ramine2017-04-071-8/+5
|
* Kill ResourceGroupAnthony Ramine2017-04-061-36/+23
|
* Move the HTTP connector in HttpStateAnthony Ramine2017-04-064-17/+12
|
* Pass a &Pool<Connector> to http_loader::obtain_responseAnthony Ramine2017-04-061-3/+3
|
* Move the SSL client in HttpStateAnthony Ramine2017-04-062-13/+15
|
* Move hosts module into net crate. Remove obsolete functions.Josh Matthews2017-04-065-2/+72
|
* Remove unnecessary NetworkHttpRequestFactory abstraction.Josh Matthews2017-04-061-34/+10
|
* Replace hosts when making TCP connections, not when verifying SSL certs.Josh Matthews2017-04-062-4/+42
|
* Add command-line argument to use a custom SSL certificate database.Josh Matthews2017-04-062-8/+14
|
* Auto merge of #16272 - nox:net, r=jdmbors-servo2017-04-053-31/+17
|\ | | | | | | | | | | | | | | Net enhancements <!-- Reviewable:start --> This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/16272) <!-- Reviewable:end -->
| * Kill some commented-out codeAnthony Ramine2017-04-051-5/+0
| |
| * Pass the url by value to websocket_loader::main_fetchAnthony Ramine2017-04-051-6/+6
| |
| * Introduce HstsList::switch_known_hsts_host_domain_url_to_httpsAnthony Ramine2017-04-052-9/+13
| |
| * Kill hsts::secure_urlAnthony Ramine2017-04-051-13/+0
| |
* | Auto merge of #16262 - jdm:connection-pool, r=noxbors-servo2017-04-052-3/+4
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | Enable HTTP connection pooling - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes fix #15694 - [X] There are tests for these changes <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/16262) <!-- Reviewable:end -->
| * Enable HTTP connection pooling. Retry stale connections indicated by ↵Josh Matthews2017-04-042-3/+4
| | | | | | | | connection reset errors.
* | Auto merge of #16126 - ferjm:issue-14520-block-media-csv, r=noxbors-servo2017-04-051-1/+21
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Block scripts with text/csv, audio/*, video/* and image/* mime types This patch implements step 12 of the Main Fetch section of the Fetch API standard. It blocks the load of scripts with `text/csv`, `audio/*`, `video/*` and `image/*` mime types. Credit for the logic of `should_block_mime_type` function should go to the author of #14770. - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes fix #14520 - [X] There are tests for these changes <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/16126) <!-- Reviewable:end -->
| * Block scripts with text/csv, audio/*, video/* and image/* mime typesFernando Jiménez Moreno2017-04-031-1/+21
| |
* | Use set_default_accept in websocket_loaderAnthony Ramine2017-04-041-17/+5
| |
* | Introduce http_loader::set_default_acceptAnthony Ramine2017-04-042-43/+57
| |
* | Update the steps in fetch_with_cors_cacheAnthony Ramine2017-04-041-14/+17
| |
* | 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
| |
* | Don't share the SSL client between the private and public groupsAnthony Ramine2017-04-031-2/+3
|/
* Move Arc out of HttpStateAnthony Ramine2017-04-034-29/+28
|
* Reuse HttpState in ResourceGroupAnthony Ramine2017-04-032-20/+16
|
* Move the HTTP connector to FetchContextAnthony Ramine2017-04-034-11/+12
|
* Make Response::url_list be a bare Vec<ServoUrl>Anthony Ramine2017-04-032-12/+15
|