apple / swift-nio-transport-services

Extensions for SwiftNIO to support Apple platforms as first-class citizens.
https://swiftpackageindex.com/apple/swift-nio-transport-services/main/documentation/niotransportservices
Apache License 2.0
282 stars 71 forks source link

Fix availability guards and compiler warnings #193

Closed FranzBusch closed 9 months ago

FranzBusch commented 9 months ago

Motivation

We missed a few availability guards in our tests which caused errors when compiling for older Darwin platforms. Additionally the latest NIO release deprecated a few APIs on NIOAsyncChannel.

Modification

This PR adds the missing guards and fixes all of the deprecation warnings.

Result

We should build on all supported platforms again