[System]: Remove 'SECURITY_DEP' conditional from HttpListener and related classes...
[mono.git] / mcs / class / System / System.Net / ChunkedInputStream.cs
index 2ee49937e54a6c5018da298828ae9f0378e4d52d..04aa77310a62ee2f7181e3f65854e06d81fe4c6e 100644 (file)
 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-#if NET_2_0
+
+using System.IO;
 using System.Net.Sockets;
 using System.Runtime.InteropServices;
 namespace System.Net {
        class ChunkedInputStream : RequestStream {
                bool disposed;
-               ChunkStream decoder;
+               MonoChunkStream decoder;
                HttpListenerContext context;
                bool no_more_data;
 
@@ -51,16 +52,16 @@ namespace System.Net {
                        }
                }
 
-               public ChunkedInputStream (HttpListenerContext context, Socket sock,
+               public ChunkedInputStream (HttpListenerContext context, Stream stream,
                                                byte [] buffer, int offset, int length)
-                                       : base (sock, buffer, offset, length)
+                                       : base (stream, buffer, offset, length)
                {
                        this.context = context;
                        WebHeaderCollection coll = (WebHeaderCollection) context.Request.Headers;
-                       decoder = new ChunkStream (coll);
+                       decoder = new MonoChunkStream (coll);
                }
 
-               public ChunkStream Decoder {
+               public MonoChunkStream Decoder {
                        get { return decoder; }
                        set { decoder = value; }
                }
@@ -156,7 +157,7 @@ namespace System.Net {
                                ares.AsyncWaitHandle.WaitOne ();
 
                        if (my_ares.Error != null)
-                               throw new HttpListenerException (400, "I/O operation aborted.");
+                               throw new HttpListenerException (400, "I/O operation aborted: " + my_ares.Error.Message);
 
                        return my_ares.Count;
                }
@@ -170,4 +171,3 @@ namespace System.Net {
                }
        }
 }
-#endif