mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
docs: fix docs
This commit is contained in:
parent
4b2e6d88b3
commit
9a09d98e6d
2 changed files with 3 additions and 8 deletions
|
@ -42,6 +42,8 @@ GstRTSPAuth
|
|||
GstRTSPAuthClass
|
||||
gst_rtsp_auth_new
|
||||
|
||||
gst_rtsp_auth_get_tls_certificate
|
||||
gst_rtsp_auth_set_tls_certificate
|
||||
gst_rtsp_auth_make_basic
|
||||
gst_rtsp_auth_add_basic
|
||||
gst_rtsp_auth_remove_basic
|
||||
|
@ -49,6 +51,7 @@ gst_rtsp_auth_setup
|
|||
gst_rtsp_auth_check
|
||||
|
||||
<SUBSECTION AuthChecks>
|
||||
GST_RTSP_AUTH_CHECK_CONNECT
|
||||
GST_RTSP_AUTH_CHECK_URL
|
||||
GST_RTSP_AUTH_CHECK_MEDIA_FACTORY_ACCESS
|
||||
GST_RTSP_AUTH_CHECK_MEDIA_FACTORY_CONSTRUCT
|
||||
|
@ -328,9 +331,6 @@ gst_rtsp_server_set_service
|
|||
gst_rtsp_server_get_backlog
|
||||
gst_rtsp_server_set_backlog
|
||||
|
||||
gst_rtsp_server_get_tls_certificate
|
||||
gst_rtsp_server_set_tls_certificate
|
||||
|
||||
gst_rtsp_server_get_bound_port
|
||||
|
||||
gst_rtsp_server_get_mount_points
|
||||
|
|
|
@ -60,8 +60,6 @@ struct _GstRTSPServer {
|
|||
* object that handles the new connection on @socket. The default
|
||||
* implementation will create a GstRTSPClient and will configure the
|
||||
* mount-points, auth, session-pool and thread-pool on the client.
|
||||
* @setup_connection: Setup the new client connection. The default
|
||||
* implementation will configure the TLS certificate when specified.
|
||||
* @client_connected: emited when a new client connected.
|
||||
*
|
||||
* The RTSP server class structure
|
||||
|
@ -88,9 +86,6 @@ gchar * gst_rtsp_server_get_service (GstRTSPServer *serve
|
|||
void gst_rtsp_server_set_backlog (GstRTSPServer *server, gint backlog);
|
||||
gint gst_rtsp_server_get_backlog (GstRTSPServer *server);
|
||||
|
||||
void gst_rtsp_server_set_tls_certificate (GstRTSPServer *server, GTlsCertificate *cert);
|
||||
GTlsCertificate * gst_rtsp_server_get_tls_certificate (GstRTSPServer *server);
|
||||
|
||||
int gst_rtsp_server_get_bound_port (GstRTSPServer *server);
|
||||
|
||||
void gst_rtsp_server_set_session_pool (GstRTSPServer *server, GstRTSPSessionPool *pool);
|
||||
|
|
Loading…
Reference in a new issue