14 lines
283 B
Go
14 lines
283 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)
|
||
|
}
|