From f23509e43053b8e5a67d4f478fcc930d35a386e2 Mon Sep 17 00:00:00 2001 From: "Zeeshan Ali (Khattak)" Date: Sun, 18 Jan 2009 19:27:17 +0000 Subject: [PATCH] Rename Steam to HTTPResponse. svn path=/trunk/; revision=443 --- src/rygel/Makefile.am | 10 +++++----- src/rygel/rygel-gst-stream.vala | 2 +- src/rygel/{rygel-stream.vala => rygel-http-response.vala} | 8 ++++---- 3 files changed, 10 insertions(+), 10 deletions(-) rename src/rygel/{rygel-stream.vala => rygel-http-response.vala} (92%) diff --git a/src/rygel/Makefile.am b/src/rygel/Makefile.am index ef22ce5..46da7db 100644 --- a/src/rygel/Makefile.am +++ b/src/rygel/Makefile.am @@ -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 \ diff --git a/src/rygel/rygel-gst-stream.vala b/src/rygel/rygel-gst-stream.vala index a22314f..322a436 100644 --- a/src/rygel/rygel-gst-stream.vala +++ b/src/rygel/rygel-gst-stream.vala @@ -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; diff --git a/src/rygel/rygel-stream.vala b/src/rygel/rygel-http-response.vala similarity index 92% rename from src/rygel/rygel-stream.vala rename to src/rygel/rygel-http-response.vala index 94ffc78..e8541bc 100644 --- a/src/rygel/rygel-stream.vala +++ b/src/rygel/rygel-http-response.vala @@ -23,15 +23,15 @@ * 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; -- 2.7.4