Table of Content
Apple staff gave the following answer:
TIC
expands to "TCP I/O connection
", which is a subsystem withinCFNetwork
that runs aTCP
connection.For example:
TIC Read Status [11:0x0]: 1:57
.
1
and57
are theCFStreamError
domain and code, respectively; a domain of1
iskCFStreamErrorDomainPOSIX
and, within that domain,57
isENOTCONN
.In short, a
TCP
read has failed withENOTCONN
.As the
TCP I/O connection
subsystem has no public API, you must necessarily be using it via some high-level wrapper (likeNSURLSession
).