// Code generated by go generate. DO NOT EDIT.
// Source: sys_conn_buffers.go

package quic

import (
	
	
	
	

	
	
)

func setSendBuffer( net.PacketConn) error {
	,  := .(interface{ (int) error })
	if ! {
		return errors.New("connection doesn't allow setting of send buffer size. Not a *net.UDPConn?")
	}

	var  syscall.RawConn
	if ,  := .(interface {
		() (syscall.RawConn, error)
	});  {
		var  error
		,  = .()
		if  != nil {
			 = nil
		}
	}
	// The connection has a SetWriteBuffer method, but we couldn't obtain a syscall.RawConn.
	// This shouldn't happen for a net.UDPConn, but is possible if the connection just implements the
	// net.PacketConn interface and the SetWriteBuffer method.
	// We have no way of checking if increasing the buffer size actually worked.
	if  == nil {
		return .(protocol.DesiredSendBufferSize)
	}

	,  := inspectWriteBuffer()
	if  != nil {
		return fmt.Errorf("failed to determine send buffer size: %w", )
	}
	if  >= protocol.DesiredSendBufferSize {
		utils.DefaultLogger.Debugf("Conn has send buffer of %d kiB (wanted: at least %d kiB)", /1024, protocol.DesiredSendBufferSize/1024)
		return nil
	}
	// Ignore the error. We check if we succeeded by querying the buffer size afterward.
	_ = .(protocol.DesiredSendBufferSize)
	,  := inspectWriteBuffer()
	if  < protocol.DesiredSendBufferSize {
		// Try again with RCVBUFFORCE on Linux
		_ = forceSetSendBuffer(, protocol.DesiredSendBufferSize)
		,  = inspectWriteBuffer()
		if  != nil {
			return fmt.Errorf("failed to determine send buffer size: %w", )
		}
	}
	if  != nil {
		return fmt.Errorf("failed to determine send buffer size: %w", )
	}
	if  ==  {
		return fmt.Errorf("failed to increase send buffer size (wanted: %d kiB, got %d kiB)", protocol.DesiredSendBufferSize/1024, /1024)
	}
	if  < protocol.DesiredSendBufferSize {
		return fmt.Errorf("failed to sufficiently increase send buffer size (was: %d kiB, wanted: %d kiB, got: %d kiB)", /1024, protocol.DesiredSendBufferSize/1024, /1024)
	}
	utils.DefaultLogger.Debugf("Increased send buffer size to %d kiB", /1024)
	return nil
}