AndroidAsync/src/com/koushikdutta/async
http
filter
ChunkedOutputFilter.java +5 -0
server
AsyncHttpServerResponse.java +3 -0
AsyncHttpServerResponseImpl.java +10 -7
WebSocketImpl.java +5 -2
BufferedDataSink.java +7 -1
FilteredDataSink.java +6 -1
@@ -2,6 +2,7 @@ package com.koushikdutta.async.http.filter;
@@ -11,6 +12,10 @@ public class ChunkedOutputFilter extends FilteredDataSink {
@@ -2,6 +2,7 @@ package com.koushikdutta.async.http.filter;
@@ -11,6 +12,10 @@ public class ChunkedOutputFilter extends FilteredDataSink {
Conflict: This file was modified in both the source and target branches.
Ask someone with write access to resolve it.
@@ -34,4 +35,6 @@ public interface AsyncHttpServerResponse extends DataSink, CompletedCallback {
Conflict: This file was modified in both the source and target branches.
Ask someone with write access to resolve it.
@@ -2,11 +2,7 @@ package com.koushikdutta.async.http.server;
@@ -31,6 +27,7 @@ import java.util.Locale;
@@ -108,12 +105,12 @@ public class AsyncHttpServerResponseImpl implements AsyncHttpServerResponse {
@@ -192,6 +189,12 @@ public class AsyncHttpServerResponseImpl implements AsyncHttpServerResponse {
@@ -21,6 +21,9 @@ import java.util.LinkedList;
@@ -136,7 +139,7 @@ public class WebSocketImpl implements WebSocket {
@@ -159,7 +162,7 @@ public class WebSocketImpl implements WebSocket {
Conflict: This file was modified in both the source and target branches.
Ask someone with write access to resolve it.
@@ -8,9 +8,15 @@ import java.nio.ByteBuffer;
@@ -52,7 +58,7 @@ public class BufferedDataSink implements DataSink {