Skip to content

Commit

Permalink
PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
gjcairo committed Jan 17, 2025
1 parent 7a6d8e9 commit ef1a83a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ internal import NIOCore

extension NIOAsyncChannel {
var remoteAddressInfo: String {
getAddressInfoWithFallbackIfUDS(
self.getAddressInfoWithFallbackIfUDS(
address: self.channel.remoteAddress,
udsFallback: self.channel.localAddress
)
}

var localAddressInfo: String {
getAddressInfoWithFallbackIfUDS(
self.getAddressInfoWithFallbackIfUDS(
address: self.channel.localAddress,
udsFallback: self.channel.remoteAddress
)
Expand Down

0 comments on commit ef1a83a

Please sign in to comment.