[rygel] core: HTTPRequest now uses it's own Cancellable



commit faf14e1c9f546b891688bcd01a0b33bf07a555a9
Author: Zeeshan Ali (Khattak) <zeeshanak gnome org>
Date:   Mon Jan 11 18:55:33 2010 +0200

    core: HTTPRequest now uses it's own Cancellable
    
    HTTPRequest now uses it's own Cancellable rather than that of HTTPServer.

 src/rygel/rygel-http-request.vala |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/rygel/rygel-http-request.vala b/src/rygel/rygel-http-request.vala
index b4e91a8..92142a1 100644
--- a/src/rygel/rygel-http-request.vala
+++ b/src/rygel/rygel-http-request.vala
@@ -58,7 +58,7 @@ internal class Rygel.HTTPRequest : GLib.Object, Rygel.StateMachine {
                         Soup.Message              msg,
                         HashTable<string,string>? query) {
         this.http_server = http_server;
-        this.cancellable = http_server.cancellable;
+        this.cancellable = new Cancellable ();
         this.root_container = http_server.root_container;
         this.server = server;
         this.msg = msg;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]