cloudflare/cloudflared

Public

mirrored from https://github.com/cloudflare/cloudflaredAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
d50fee4fa0ea358952a83798af3400c5757dff21

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

connection/features.go

9lines · modecode

1package connection
2
3const (
4 FEATURE_SERIALIZED_HEADERS = "serialized_headers"
5)
6
7var SUPPORTED_FEATURES = []string{
8 //FEATURE_SERIALIZED_HEADERS,
9}
10