mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
4e31f2def5
With a few unnecessary gst_rtsp_stream_transport_* methods manually disabled to avoid compilation errors. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5961>
30 lines
608 B
C#
30 lines
608 B
C#
// This file was generated by the Gtk# code generator.
|
|
// Any changes made will be lost if regenerated.
|
|
|
|
namespace Gst.RtspServer {
|
|
|
|
using System;
|
|
|
|
public delegate void AcceptCertificateHandler(object o, AcceptCertificateArgs args);
|
|
|
|
public class AcceptCertificateArgs : GLib.SignalArgs {
|
|
public GLib.TlsConnection Connection{
|
|
get {
|
|
return (GLib.TlsConnection) Args [0];
|
|
}
|
|
}
|
|
|
|
public GLib.TlsCertificate PeerCert{
|
|
get {
|
|
return (GLib.TlsCertificate) Args [1];
|
|
}
|
|
}
|
|
|
|
public GLib.TlsCertificateFlags Errors{
|
|
get {
|
|
return (GLib.TlsCertificateFlags) Args [2];
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|