mirror of
https://github.com/bluenviron/mediamtx.git
synced 2025-12-20 02:00:05 -08:00
parent
6ea299fc56
commit
1688e5d2e5
39 changed files with 1928 additions and 951 deletions
|
|
@ -90,6 +90,7 @@ type pathGetPathConfRes struct {
|
|||
|
||||
type pathGetPathConfReq struct {
|
||||
name string
|
||||
publish bool
|
||||
credentials authCredentials
|
||||
res chan pathGetPathConfRes
|
||||
}
|
||||
|
|
@ -130,6 +131,7 @@ type pathPublisherAnnounceRes struct {
|
|||
type pathPublisherAddReq struct {
|
||||
author publisher
|
||||
pathName string
|
||||
skipAuth bool
|
||||
credentials authCredentials
|
||||
res chan pathPublisherAnnounceRes
|
||||
}
|
||||
|
|
@ -151,6 +153,11 @@ type pathPublisherStopReq struct {
|
|||
res chan struct{}
|
||||
}
|
||||
|
||||
type pathAPISourceOrReader struct {
|
||||
Type string `json:"type"`
|
||||
ID string `json:"id"`
|
||||
}
|
||||
|
||||
type pathAPIPathsListItem struct {
|
||||
ConfName string `json:"confName"`
|
||||
Conf *conf.PathConf `json:"conf"`
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue