mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
13 lines
284 B
Go
13 lines
284 B
Go
package controllers
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/owncast/owncast/core/rtmp"
|
|
)
|
|
|
|
// DisconnectInboundConnection will force-disconnect an inbound stream.
|
|
func DisconnectInboundConnection(w http.ResponseWriter, r *http.Request) {
|
|
rtmp.Disconnect()
|
|
w.WriteHeader(http.StatusOK)
|
|
}
|