Skip to content
This repository was archived by the owner on Jul 9, 2023. It is now read-only.

Commit c53a150

Browse files
committed
Merge fix
2 parents 2202d02 + 0cc53a6 commit c53a150

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Titanium.Web.Proxy/Helpers/CustomBinaryReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
namespace Titanium.Web.Proxy.Helpers
77
{
8-
public class CustomBinaryReader : BinaryReader
8+
internal class CustomBinaryReader : BinaryReader
99
{
1010
internal CustomBinaryReader(Stream stream, Encoding encoding)
1111
: base(stream, encoding)

Titanium.Web.Proxy/RequestHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ private static void HandleHttpSessionRequest(TcpClient client, string httpCmd, S
250250
Dispose(client, clientStream, clientStreamReader, clientStreamWriter, args);
251251
break;
252252
}
253-
253+
254254
}
255255

256256
if (connection != null)

Titanium.Web.Proxy/ResponseHandler.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,10 @@ private static List<HttpHeader> ReadResponseHeaders(HttpWebSession response)
124124
}
125125
}
126126

127-
return response.Response.ResponseHeaders;
127+
return response.Response.ResponseHeaders;
128128
}
129129

130+
130131
private static void WriteResponseStatus(Version version, string code, string description,
131132
StreamWriter responseWriter)
132133
{

0 commit comments

Comments
 (0)