diff options
author | Himaja <hsvalava@users.noreply.github.com> | 2015-04-26 20:51:46 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2015-05-05 11:50:00 -0400 |
commit | 6e91ebb1fe2932655c191a26a4ca4770231e69f3 (patch) | |
tree | fa78b742be2749625d20f6b48e9d2a0f2431de53 /components/net/lib.rs | |
parent | 9f4a88bc48a8402dac272cea0bb3d9b7a6c37b32 (diff) | |
download | servo-6e91ebb1fe2932655c191a26a4ca4770231e69f3.tar.gz servo-6e91ebb1fe2932655c191a26a4ca4770231e69f3.zip |
1. Add an enum type NetworkEventMessage for handling both HttpRequest and HttpResponse messages
2. Change run_server to handle network events
3. Add a unique id to track request-actor associations
4. Update the network event actor
Diffstat (limited to 'components/net/lib.rs')
-rw-r--r-- | components/net/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/net/lib.rs b/components/net/lib.rs index b64c38b0f49..8379211b36f 100644 --- a/components/net/lib.rs +++ b/components/net/lib.rs @@ -29,6 +29,7 @@ extern crate rustc_serialize; extern crate util; extern crate time; extern crate url; +extern crate uuid; extern crate regex; |