CFSocketCreateConnectedToSocketSignature(_:_:_:_:_:_:)
Creates a CFSocket object and opens a connection to a remote socket.
Declaration
func CFSocketCreateConnectedToSocketSignature(_ allocator: CFAllocator!, _ signature: UnsafePointer<CFSocketSignature>!, _ callBackTypes: CFOptionFlags, _ callout: CFSocketCallBack!, _ context: UnsafePointer<CFSocketContext>!, _ timeout: CFTimeInterval) -> CFSocket!Parameters
- allocator:
The allocator to use to allocate memory for the new object. Pass
NULLor Kcfallocatordefault to use the current default allocator. - signature:
A Cfsocketsignature identifying the communication protocol and address to which the CFSocket object should connect.
- callBackTypes:
A bitwise-OR combination of the types of socket activity that should cause
calloutto be called. See Cfsocketcallbacktype for the possible activity values. - callout:
The function to call when one of the activities indicated by
callBackTypesoccurs. - context:
A structure holding contextual information for the CFSocket object. The function copies the information out of the structure, so the memory pointed to by
contextdoes not need to persist beyond the function call. Can beNULL. - timeout:
The time to wait for a connection to succeed. If a negative value is used, this function does not wait for the connection and instead lets the connection attempt happen in the background. If
callBackTypesincludeskCFSocketConnectCallBack, you will receive a callback when the background connection succeeds or fails.
Return Value
The new CFSocket object, or NULL if an error occurred. Ownership follows the The Create Rule.