18 lines
374 B
Go
18 lines
374 B
Go
|
package constants
|
||
|
|
||
|
const (
|
||
|
HTTPEntry_Probe = "/probe"
|
||
|
HTTPEntry_Data = "/data"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
HTTPRequestHeaderKey_Probe_Method = "overFlow-Probe-Method"
|
||
|
HTTPRequestHeaderKey_Probe_ProbeKey = "overFlow-Probe-ProbeKey"
|
||
|
|
||
|
HTTPResponseHeaderKey_Probe_SetEncryptionKey = "overFlow-Probe-SetEncryptionKey"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
HTTPRequestHeaderValue_Probe_Method_Connect = "CONNECT"
|
||
|
)
|