CFHostStartInfoResolution(_:_:_:)
Starts resolution for a host object.
Declaration
func CFHostStartInfoResolution(_ theHost: CFHost, _ info: CFHostInfoType, _ error: UnsafeMutablePointer<CFStreamError>?) -> BoolParameters
- theHost:
The host, obtained by previously calling Cfhostcreatecopy(_:_:), Cfhostcreatewithaddress(_:_:), or Cfhostcreatewithname(_:_:), that is to be resolved. This value must not be
NULL. - info:
A value of type
CFHostInfoTypespecifying the type of information that is to be retrieved. See Cfhostinfotype for possible values. - error:
A pointer to a doc://com.apple.documentation/documentation/corefoundation/cfstreamerror structure, that, if an error occurs, is set to the error and the error’s domain. In synchronous mode, the error indicates why resolution failed, and in asynchronous mode, the error indicates why resolution failed to start.
Return Value
TRUE if the resolution was started (asynchronous mode); FALSE if another resolution is already in progress for theHost or if an error occurred.
Discussion
This function retrieves the information specified by info and stores it in the host.
In synchronous mode, this function blocks until the resolution has completed, in which case this function returns TRUE, until the resolution is stopped by calling CFHostCancelInfoResolution(_:_:) from another thread, in which case this function returns FALSE, or until an error occurs.
Special Considerations
This function is thread safe.
See Also
Hosts
CFHostCFHostInfoTypeCFHostClientContextCFHostCancelInfoResolution(_:_:)CFHostCreateCopy(_:_:)CFHostCreateWithAddress(_:_:)CFHostCreateWithName(_:_:)CFHostGetAddressing(_:_:)CFHostGetNames(_:_:)CFHostGetReachability(_:_:)CFHostGetTypeID()CFHostScheduleWithRunLoop(_:_:_:)CFHostSetClient(_:_:_:)CFHostUnscheduleFromRunLoop(_:_:_:)