mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 04:27:39 +03:00
36 lines
730 B
Go
36 lines
730 B
Go
package protocol
|
|
|
|
import (
|
|
"net/http"
|
|
"strconv"
|
|
)
|
|
|
|
const (
|
|
URLHost = "hysteria"
|
|
URLPath = "/auth"
|
|
|
|
HeaderAuth = "Hysteria-Auth"
|
|
HeaderCCRX = "Hysteria-CC-RX"
|
|
|
|
StatusAuthOK = 233
|
|
)
|
|
|
|
func AuthRequestDataFromHeader(h http.Header) (auth string, rx uint64) {
|
|
auth = h.Get(HeaderAuth)
|
|
rx, _ = strconv.ParseUint(h.Get(HeaderCCRX), 10, 64)
|
|
return
|
|
}
|
|
|
|
func AuthRequestDataToHeader(h http.Header, auth string, rx uint64) {
|
|
h.Set(HeaderAuth, auth)
|
|
h.Set(HeaderCCRX, strconv.FormatUint(rx, 10))
|
|
}
|
|
|
|
func AuthResponseDataFromHeader(h http.Header) (rx uint64) {
|
|
rx, _ = strconv.ParseUint(h.Get(HeaderCCRX), 10, 64)
|
|
return
|
|
}
|
|
|
|
func AuthResponseDataToHeader(h http.Header, rx uint64) {
|
|
h.Set(HeaderCCRX, strconv.FormatUint(rx, 10))
|
|
}
|