mirror of
https://github.com/dalbodeule/hop-gate.git
synced 2026-09-21 08:11:06 +09:00
- document HTTP/1.1, HTTP/2, and HTTP/3 ingress - describe SSE streaming and timeout behavior - document HTTP/2 and HTTP/3 Extended CONNECT - update yamux stream and deployment architecture - document Go 1.27 and UDP HTTP/3 requirements
9 lines
232 B
Go
9 lines
232 B
Go
package tunnel
|
|
|
|
import "context"
|
|
|
|
// DomainValidator validates the client credentials presented on the control stream.
|
|
type DomainValidator interface {
|
|
ValidateDomainAPIKey(ctx context.Context, domain, clientAPIKey string) error
|
|
}
|