aboutsummaryrefslogtreecommitdiff
path: root/SocketHttpListener/Net/EntitySendFormat.cs
diff options
context:
space:
mode:
Diffstat (limited to 'SocketHttpListener/Net/EntitySendFormat.cs')
-rw-r--r--SocketHttpListener/Net/EntitySendFormat.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/SocketHttpListener/Net/EntitySendFormat.cs b/SocketHttpListener/Net/EntitySendFormat.cs
new file mode 100644
index 000000000..6e585bdc9
--- /dev/null
+++ b/SocketHttpListener/Net/EntitySendFormat.cs
@@ -0,0 +1,14 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace SocketHttpListener.Net
+{
+ internal enum EntitySendFormat
+ {
+ ContentLength = 0, // Content-Length: XXX
+ Chunked = 1, // Transfer-Encoding: chunked
+ }
+}