Rename Steam to HTTPResponse.
authorZeeshan Ali (Khattak) <zeeshanak@src.gnome.org>
Sun, 18 Jan 2009 19:27:17 +0000 (19:27 +0000)
committerZeeshan Ali (Khattak) <zeeshanak@src.gnome.org>
Sun, 18 Jan 2009 19:27:17 +0000 (19:27 +0000)
svn path=/trunk/; revision=443

src/rygel/Makefile.am
src/rygel/rygel-gst-stream.vala
src/rygel/rygel-http-response.vala [moved from src/rygel/rygel-stream.vala with 92% similarity]

index ef22ce5..46da7db 100644 (file)
@@ -37,8 +37,8 @@ BUILT_SOURCES = rygel-1.0.vapi \
                rygel-plugin-loader.c \
                 rygel-http-server.c \
                 rygel-http-server.h \
-                rygel-stream.c \
-                rygel-stream.h \
+                rygel-http-response.c \
+                rygel-http-response.h \
                 rygel-gst-stream.c \
                 rygel-gst-stream.h \
                rygel-resource-info.h \
@@ -77,8 +77,8 @@ rygel_SOURCES = rygel-1.0.vapi \
                rygel-plugin-loader.vala \
                rygel-http-server.c \
                rygel-http-server.h \
-               rygel-stream.c \
-               rygel-stream.h \
+               rygel-http-response.c \
+               rygel-http-response.h \
                rygel-gst-stream.c \
                rygel-gst-stream.h \
                rygel-resource-info.h \
@@ -119,7 +119,7 @@ rygel-1.0.vapi: rygel-content-directory.vala \
                rygel-connection-manager.vala \
                rygel-media-receiver-registrar.vala \
                rygel-http-server.vala \
-               rygel-stream.vala \
+               rygel-http-response.vala \
                rygel-gst-stream.vala \
                rygel-resource-info.vala \
                rygel-icon-info.vala \
index a22314f..322a436 100644 (file)
@@ -34,7 +34,7 @@ public errordomain Rygel.GstStreamError {
     LINK
 }
 
-public class Rygel.GstStream : Rygel.Stream {
+public class Rygel.GstStream : Rygel.HTTPResponse {
     private const string SINK_NAME = "fakesink";
 
     private Pipeline pipeline;
similarity index 92%
rename from src/rygel/rygel-stream.vala
rename to src/rygel/rygel-http-response.vala
index 94ffc78..e8541bc 100644 (file)
  * version 2 of the License, or (at your option) any later version.
  */
 
-public class Rygel.Stream : GLib.Object {
+public class Rygel.HTTPResponse : GLib.Object {
     public Soup.Server server { get; private set; }
     protected Soup.Message msg;
 
     public signal void eos ();
 
-    public Stream (Soup.Server server,
-                   Soup.Message msg,
-                   bool partial) {
+    public HTTPResponse (Soup.Server  server,
+                         Soup.Message msg,
+                         bool         partial) {
         this.server = server;
         this.msg = msg;