Does the Network Framework offer the possibility to read ECN bits from the IP header when receiving data?
I know I can mark the ecn bits
let ipMetaData = NWProtocolIP.Metadata()
ipMetaData.ecn = .nonECT
NWConnection.ContentContext(identifier: "ECN", metadata: [ipMetaData])
But can I read it back if it's available on received packets?