core: Change visibility of some HTTPResponse fields
authorZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Tue, 22 Mar 2011 21:43:36 +0000 (23:43 +0200)
committerZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Sat, 26 Mar 2011 14:05:12 +0000 (16:05 +0200)
HTTPResponse's 'msg' and 'priority' fields, now public.

src/rygel/rygel-http-response.vala

index c91adac..dde73f7 100644 (file)
@@ -25,13 +25,13 @@ using Gst;
 
 internal abstract class Rygel.HTTPResponse : GLib.Object, Rygel.StateMachine {
     public Soup.Server server { get; private set; }
-    protected Soup.Message msg;
+    public Soup.Message msg;
 
     public Cancellable cancellable { get; set; }
 
     protected SourceFunc run_continue;
     private int _priority = -1;
-    protected int priority {
+    public int priority {
         get {
             if (this._priority != -1) {
                 return this._priority;