CFSocketCreateWithNative(_:_:_:_:_:)
Creates a CFSocket object for a pre-existing native socket.
Declaration
func CFSocketCreateWithNative(_ allocator: CFAllocator!, _ sock: CFSocketNativeHandle, _ callBackTypes: CFOptionFlags, _ callout: CFSocketCallBack!, _ context: UnsafePointer<CFSocketContext>!) -> CFSocket!Parameters
- allocator:
The allocator to use to allocate memory for the new object. Pass
NULLor Kcfallocatordefault to use the current default allocator. - sock:
The native socket for which to create a CFSocket object.
- 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.
Return Value
The new CFSocket object, or NULL if an error occurred. If a CFSocket object already exists for sock, the function returns the pre-existing object instead of creating a new object; the context, callout, and callBackTypes parameters are ignored in this case. Ownership follows the The Create Rule.