Renamed ChunkedInputStream.cs to ChunkedRequestStream.cs

This commit is contained in:
sta
2014-05-18 14:05:14 +09:00
parent 2a1f706051
commit 4be6ef8494
3 changed files with 5 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
#region License
/*
* ChunkedInputStream.cs
* ChunkedRequestStream.cs
*
* This code is derived from System.Net.ChunkedInputStream.cs of Mono
* (http://www.mono-project.com).
@@ -42,7 +42,7 @@ using System.IO;
namespace WebSocketSharp.Net
{
internal class ChunkedInputStream : RequestStream
internal class ChunkedRequestStream : RequestStream
{
#region Private Const Fields
@@ -61,7 +61,7 @@ namespace WebSocketSharp.Net
#region Public Constructors
public ChunkedInputStream (
public ChunkedRequestStream (
HttpListenerContext context, Stream stream, byte [] buffer, int offset, int length)
: base (stream, buffer, offset, length)
{

View File

@@ -485,7 +485,7 @@ namespace WebSocketSharp.Net
if (chunked) {
_chunked = true;
_context.Response.SendChunked = true;
_inputStream = new ChunkedInputStream (
_inputStream = new ChunkedRequestStream (
_context, _stream, buff, _position, len - _position);
}
else {