Compare commits
2 Commits
06c1f97b19
...
6fa02a6a79
| Author | SHA1 | Date |
|---|---|---|
|
|
6fa02a6a79 | |
|
|
0d55af16d2 |
|
|
@ -39,7 +39,7 @@ let package = Package(
|
|||
.library(name: "NIOTransportServices", targets: ["NIOTransportServices"])
|
||||
],
|
||||
dependencies: [
|
||||
.package(url: "https://github.com/apple/swift-nio.git", branch: "main"),
|
||||
.package(url: "https://github.com/apple/swift-nio.git", from: "2.83.0"),
|
||||
.package(url: "https://github.com/apple/swift-atomics.git", from: "1.0.2"),
|
||||
],
|
||||
targets: [
|
||||
|
|
|
|||
|
|
@ -129,7 +129,7 @@ internal struct BackpressureManager {
|
|||
@available(OSX 10.14, iOS 12.0, tvOS 12.0, watchOS 6.0, *)
|
||||
internal final class NIOTSConnectionChannel: StateManagedNWConnectionChannel {
|
||||
/// The `ByteBufferAllocator` for this `Channel`.
|
||||
public var allocator = ByteBufferAllocator()
|
||||
public let allocator = ByteBufferAllocator()
|
||||
|
||||
/// An `EventLoopFuture` that will complete when this channel is finally closed.
|
||||
public var closeFuture: EventLoopFuture<Void> {
|
||||
|
|
|
|||
Loading…
Reference in New Issue