mirror of
https://github.com/rclone/rclone.git
synced 2024-11-29 11:55:01 +01:00
223d8c5fe3
This is due to use of go1.21 only constructs in github.com/anacrolix/log
30 lines
559 B
Go
30 lines
559 B
Go
//go:build go1.21
|
|
|
|
package dlna
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/anacrolix/dms/upnp"
|
|
)
|
|
|
|
type mediaReceiverRegistrarService struct {
|
|
*server
|
|
upnp.Eventing
|
|
}
|
|
|
|
func (mrrs *mediaReceiverRegistrarService) Handle(action string, argsXML []byte, r *http.Request) (map[string]string, error) {
|
|
switch action {
|
|
case "IsAuthorized", "IsValidated":
|
|
return map[string]string{
|
|
"Result": "1",
|
|
}, nil
|
|
case "RegisterDevice":
|
|
return map[string]string{
|
|
"RegistrationRespMsg": mrrs.RootDeviceUUID,
|
|
}, nil
|
|
default:
|
|
return nil, upnp.InvalidActionError
|
|
}
|
|
}
|