mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-07-28 23:39:58 +00:00
TUN-3998: Allow to cleanup the connections of a tunnel limited to a single client
This commit is contained in:
25
tunnelstore/cleanup_params.go
Normal file
25
tunnelstore/cleanup_params.go
Normal file
@@ -0,0 +1,25 @@
|
||||
package tunnelstore
|
||||
|
||||
import (
|
||||
"net/url"
|
||||
|
||||
"github.com/google/uuid"
|
||||
)
|
||||
|
||||
type CleanupParams struct {
|
||||
queryParams url.Values
|
||||
}
|
||||
|
||||
func NewCleanupParams() *CleanupParams {
|
||||
return &CleanupParams{
|
||||
queryParams: url.Values{},
|
||||
}
|
||||
}
|
||||
|
||||
func (cp *CleanupParams) ForClient(clientID uuid.UUID) {
|
||||
cp.queryParams.Set("client_id", clientID.String())
|
||||
}
|
||||
|
||||
func (cp CleanupParams) encode() string {
|
||||
return cp.queryParams.Encode()
|
||||
}
|
Reference in New Issue
Block a user