mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 04:40:37 +03:00
21 lines
518 B
Go
21 lines
518 B
Go
package admin
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/owncast/owncast/controllers"
|
|
"github.com/owncast/owncast/core"
|
|
|
|
"github.com/owncast/owncast/core/rtmp"
|
|
)
|
|
|
|
// DisconnectInboundConnection will force-disconnect an inbound stream.
|
|
func DisconnectInboundConnection(w http.ResponseWriter, r *http.Request) {
|
|
if !core.GetStatus().Online {
|
|
controllers.WriteSimpleResponse(w, false, "no inbound stream connected")
|
|
return
|
|
}
|
|
|
|
rtmp.Disconnect()
|
|
controllers.WriteSimpleResponse(w, true, "inbound stream disconnected")
|
|
}
|