TUN-2761: Use the new header management functions in cloudflared

This commit is contained in:
Areg Harutyunyan
2020-03-06 13:49:09 +00:00
parent 1b2a96f96b
commit 5bd4028ea7
5 changed files with 65 additions and 95 deletions

View File

@@ -1,9 +1,9 @@
package connection
const (
FEATURE_SERIALIZED_HEADERS = "serialized_headers"
FeatureSerializedHeaders = "serialized_headers"
)
var SUPPORTED_FEATURES = []string{
//FEATURE_SERIALIZED_HEADERS,
var SupportedFeatures = []string{
FeatureSerializedHeaders,
}