MCPcopy Create free account
hub / github.com/Pagghiu/SaneCppLibraries / associateExternallyCreatedSocketHandle

Method associateExternallyCreatedSocketHandle

Libraries/Async/Async.cpp:1014–1017  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1012SC::Result SC::AsyncEventLoop::createAsyncTCPSocket(SocketFlags::AddressFamily family, SocketDescriptor& outDescriptor)
1013{
1014 return createAsyncSocket(family, SocketFlags::SocketStream, SocketFlags::ProtocolTcp, outDescriptor);
1015}
1016
1017SC::Result SC::AsyncEventLoop::createAsyncUDPSocket(SocketFlags::AddressFamily family, SocketDescriptor& outDescriptor)
1018{
1019 return createAsyncSocket(family, SocketFlags::SocketDgram, SocketFlags::ProtocolUdp, outDescriptor);
1020}

Callers

nothing calls this directly

Calls 1

getMethod · 0.45

Tested by

no test coverage detected