Skip to content

Commit 1795f63

Browse files
committed
#23 Fix NIOSSLContext warning
1 parent 075c18a commit 1795f63

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Sources/Smtp/Handlers/StartTlsHandler.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ internal final class StartTlsHandler: ChannelDuplexHandler, RemovableChannelHand
7474

7575
private func initializeTlsHandler(context: ChannelHandlerContext, data: NIOAny) {
7676
do {
77-
let sslContext = try NIOSSLContext(configuration: .forClient())
77+
let sslContext = try NIOSSLContext(configuration: .makeClientConfiguration())
7878
let sslHandler = try NIOSSLClientHandler(context: sslContext, serverHostname: self.serverConfiguration.hostname)
7979
_ = context.channel.pipeline.addHandler(sslHandler, name: "NIOSSLClientHandler", position: .first)
8080

Sources/Smtp/SmtpSecure.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public enum SmtpSecureChannel {
3131
switch self {
3232
case .ssl:
3333
do {
34-
let sslContext = try NIOSSLContext(configuration: .forClient())
34+
let sslContext = try NIOSSLContext(configuration: .makeClientConfiguration())
3535
let sslHandler = try NIOSSLClientHandler(context: sslContext, serverHostname: hostname)
3636
return channel.pipeline.addHandler(sslHandler)
3737
} catch {

0 commit comments

Comments
 (0)