Skip to content
Open

SRT #42

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@
//

import Foundation

public class SrtClient {

}
12 changes: 12 additions & 0 deletions RootEncoder/Sources/RootEncoder/srt/srt/SrtCommandsManager.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
//
// File.swift
//
//
// Created by Pedro on 30/8/24.
//

import Foundation

public class SrtCommandsManager {

}
12 changes: 12 additions & 0 deletions RootEncoder/Sources/RootEncoder/srt/srt/SrtSender.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
//
// File.swift
//
//
// Created by Pedro on 30/8/24.
//

import Foundation

public class SrtSender {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
//
// File.swift
//
//
// Created by Pedro on 30/8/24.
//

import Foundation

public class ControlPacket {

}
12 changes: 12 additions & 0 deletions RootEncoder/Sources/RootEncoder/srt/srt/packets/DataPacket.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
//
// File.swift
//
//
// Created by Pedro on 30/8/24.
//

import Foundation

public class DataPacket {

}
13 changes: 13 additions & 0 deletions RootEncoder/Sources/RootEncoder/srt/srt/packets/PacketType.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
//
// File.swift
//
//
// Created by Pedro on 30/8/24.
//

import Foundation

public enum PacketType {
case DATA
case CONTROL
}