Class SrtGlobal
Provides global constants, settings, and configuration values for the SRT library.
public static class SrtGlobal
- Inheritance
-
SrtGlobal
- Inherited Members
Fields
DefaultSrtPort
Default SRT server port
public const int DefaultSrtPort = 21330
Field Value
Properties
LibraryName
Gets the display name of the SRT library.
public static string LibraryName { get; }
Property Value
LibraryVersion
Gets the version number of the SRT library implementation.
public static uint LibraryVersion { get; }
Property Value
RecvSocketBufferSize
Gets or sets receive socket buffer size. If null then the default buffer size is used.
public static int? RecvSocketBufferSize { get; set; }
Property Value
- int?
SendSocketBufferSize
Gets or sets send socket buffer size If null then the default buffer size is used.
public static int? SendSocketBufferSize { get; set; }
Property Value
- int?
SupportAddressFamily
Gets or sets the address family used to resolve domain names. Set to InterNetwork for IPv4 only, InterNetworkV6 for IPv6 only, or Unspecified (default) to support both IPv4 and IPv6.
public static AddressFamily SupportAddressFamily { get; set; }
Property Value
TransferStatFrequencyUs
Gets or sets the frequency of transfer statistics reporting in microseconds.
public static long TransferStatFrequencyUs { get; set; }