You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm encountering an issue with Swifter after updating my iOS app.
Prior to this update, Swifter worked well, but now, after adding the entitlement com.apple.developer.networking.multicast as required for iOS 16, the functionality doesn't seem to work.
Here's the relevant code snippet related to the Swifter setup:
varcurrentData:Data?varlocalServer:HttpServer!
server.GET["//:path"]={ request in
if let currentData = currentData {return.ok(.data(currentData))}else{return.notFound
}return.notFound
}
Steps to Reproduce
Enable the com.apple.developer.networking.multicast entitlement for the app.Run the app on iOS 16.7.2- iOS 17.0.Connected iOS app to another device (like example tv...)
Observe the issue with Swifter functionality.
Environment
Devices: iPhone 12
Network: Wi-Fi network with multicast support
Additional Information
I've added the com.apple.developer.networking.multicast entitlement asrequired, and there are no error messages in the console. The issue seems to be related to the recent iOS update.Appreciation
Thank you in advance for your help and support!
Best regards,
The text was updated successfully, but these errors were encountered:
hoangtam101
changed the title
HttpServer does support for multicast
HttpServer does not support for multicast
Dec 13, 2023
Hi everyone,
I'm encountering an issue with Swifter after updating my iOS app.
Prior to this update, Swifter worked well, but now, after adding the entitlement
com.apple.developer.networking.multicast
as required for iOS 16, the functionality doesn't seem to work.Device Versions
Swift: 5
Swifter: 1.5.0
iOS: 16.7.2
Code Snippet
Here's the relevant code snippet related to the Swifter setup:
The text was updated successfully, but these errors were encountered: