! * \brief Sets the maximum send buffer size * * \param size The new maximum send buffer size in bytes */
| 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 |