mirror of
				https://github.com/owncast/owncast.git
				synced 2025-11-04 05:17:27 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			518 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			22 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")
 | 
						|
}
 |