MCPcopy Create free account
hub / github.com/NazaraEngine/NazaraEngine / SetSendBufferSize

Method SetSendBufferSize

src/Nazara/Network/AbstractSocket.cpp:152–157  ·  view source on GitHub ↗

! * \brief Sets the maximum send buffer size * * \param size The new maximum send buffer size in bytes */

Source from the content-addressed store, hash-verified

150 * \param size The new maximum send buffer size in bytes
151 */
152 void AbstractSocket::SetSendBufferSize(std::size_t size)
153 {
154 NazaraAssert(m_handle != SocketImpl::InvalidHandle, "Socket must be created first");
155
156 SocketImpl::SetSendBufferSize(m_handle, size);
157 }
158
159 /*!
160 * \brief Operation to do when closing socket

Callers 1

InitSocketMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected