mirror of
https://github.com/HaishinKit/HaishinKit.swift.git
synced 2026-05-07 20:12:28 +00:00
13 lines
253 B
Swift
13 lines
253 B
Swift
import Foundation
|
|
import libsrt
|
|
|
|
/// The type of SRTHaishinKit supports srt modes.
|
|
enum SRTMode: String, Sendable {
|
|
/// The caller mode.
|
|
case caller
|
|
/// The listener mode.
|
|
case listener
|
|
/// The rendezvous mode.
|
|
case rendezvous
|
|
}
|