d7e355bce1
* Add support for ending the inbound stream. Closes #191 * Add a simple success response to API requests * Connected clients API with geo details * Post-rebase cleanup * Make setting and reading geo details separate operations to unblock and speed up * Rename file * Fire geoip api call behind goroutine * Add comment * Post-rebase fixes * Add support for the MaxMind GeoLite2 GeoIP database
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)
|
|
}
|