This commit is contained in:
crusader 2018-05-10 18:55:14 +09:00
parent 4b55b43680
commit dbb15f14a2
2 changed files with 11 additions and 2 deletions

View File

@ -9,10 +9,15 @@ const (
HTTPRequestHeaderKey_NoAuthProbe_Info = "overFlow-NoAuthProbe-Info"
HTTPRequestHeaderKey_NoAuthProbe_TempProbeKey = "overFlow-NoAuthProbe-TempProbeKey"
HTTPResponseHeaderKey_NoAuthProbe_SetTempProbeKey = "overFlow-NoAuthProbe-SetTempProbeKey"
HTTPResponseHeaderKey_NoAuthProbe_Method = "overFlow-NoAuthProbe-Method"
HTTPResponseHeaderKey_NoAuthProbe_Method_Param = "overFlow-NoAuthProbe-Method-Param"
)
const (
HTTPRequestHeaderValue_NoAuthProbe_Method_Regist = "REGIST"
HTTPRequestHeaderValue_NoAuthProbe_Method_Connect = "CONNECT"
HTTPResponseHeaderValue_NoAuthProbe_Method_TempProbeKey = "TEMP_PROBE_KEY"
HTTPResponseHeaderValue_NoAuthProbe_Method_Accept = "ACCEPT"
HTTPResponseHeaderValue_NoAuthProbe_Method_Deny = "DENY"
)

View File

@ -9,9 +9,13 @@ const (
HTTPRequestHeaderKey_Probe_Method = "overFlow-Probe-Method"
HTTPRequestHeaderKey_Probe_ProbeKey = "overFlow-Probe-ProbeKey"
HTTPResponseHeaderKey_Probe_SetEncryptionKey = "overFlow-Probe-SetEncryptionKey"
HTTPResponseHeaderKey_Probe_Method = "overFlow-Probe-Method"
HTTPResponseHeaderKey_Probe_Method_Param = "overFlow-Probe-Method-Param"
)
const (
HTTPRequestHeaderValue_Probe_Method_Connect = "CONNECT"
HTTPResponseHeaderValue_Probe_Method_EncryptionKey = "ENCRYPTION_KEY"
HTTPResponseHeaderValue_Probe_Method_DELETE = "DELETE"
)