mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
223d8c5fe3
This is due to use of go1.21 only constructs in github.com/anacrolix/log
29 lines
913 B
Go
29 lines
913 B
Go
//go:build go1.21
|
|
|
|
package dlna
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/anacrolix/dms/upnp"
|
|
)
|
|
|
|
const defaultProtocolInfo = "http-get:*:video/mpeg:*,http-get:*:video/mp4:*,http-get:*:video/vnd.dlna.mpeg-tts:*,http-get:*:video/avi:*,http-get:*:video/x-matroska:*,http-get:*:video/x-ms-wmv:*,http-get:*:video/wtv:*,http-get:*:audio/mpeg:*,http-get:*:audio/mp3:*,http-get:*:audio/mp4:*,http-get:*:audio/x-ms-wma*,http-get:*:audio/wav:*,http-get:*:audio/L16:*,http-get:*image/jpeg:*,http-get:*image/png:*,http-get:*image/gif:*,http-get:*image/tiff:*"
|
|
|
|
type connectionManagerService struct {
|
|
*server
|
|
upnp.Eventing
|
|
}
|
|
|
|
func (cms *connectionManagerService) Handle(action string, argsXML []byte, r *http.Request) (map[string]string, error) {
|
|
switch action {
|
|
case "GetProtocolInfo":
|
|
return map[string]string{
|
|
"Source": defaultProtocolInfo,
|
|
"Sink": "",
|
|
}, nil
|
|
default:
|
|
return nil, upnp.InvalidActionError
|
|
}
|
|
}
|