Move CustomFlow to the OpenVPNAdapterTests

This commit is contained in:
Sergey Abramchuk
2020-08-18 13:23:40 +03:00
parent cb924a0445
commit efaebb7ff1
2 changed files with 0 additions and 25 deletions
-21
View File
@@ -1,21 +0,0 @@
//
// CustomFlow.swift
// OpenVPN Adapter
//
// Created by Sergey Abramchuk on 28.10.2017.
//
import NetworkExtension
@testable import OpenVPNAdapter
class CustomFlow: NSObject, OpenVPNAdapterPacketFlow {
func readPackets(completionHandler: @escaping ([Data], [NSNumber]) -> Void) {
}
func writePackets(_ packets: [Data], withProtocols protocols: [NSNumber]) -> Bool {
return true
}
}