mirror of
https://github.com/HaishinKit/HaishinKit.swift.git
synced 2026-05-07 20:12:28 +00:00
10 lines
213 B
Swift
10 lines
213 B
Swift
public enum MoQTDataStreamType: Int, Sendable {
|
|
case objectDatagram = 0x1
|
|
case streamHeaderSubgroup = 0x4
|
|
case fetchHeader = 0x5
|
|
}
|
|
|
|
protocol MoQTDataStream {
|
|
var type: MoQTDataStreamType { get }
|
|
}
|