status-go/vendor/github.com/pion/webrtc/v3/internal/mux/endpoint.go

79 lines
1.5 KiB
Go
Raw Normal View History

2024-05-15 23:15:00 +00:00
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
// SPDX-License-Identifier: MIT
2022-03-10 09:44:48 +00:00
package mux
import (
"errors"
"io"
"net"
"time"
"github.com/pion/ice/v2"
2024-05-15 23:15:00 +00:00
"github.com/pion/transport/v2/packetio"
2022-03-10 09:44:48 +00:00
)
// Endpoint implements net.Conn. It is used to read muxed packets.
type Endpoint struct {
mux *Mux
buffer *packetio.Buffer
}
// Close unregisters the endpoint from the Mux
func (e *Endpoint) Close() (err error) {
err = e.close()
if err != nil {
return err
}
e.mux.RemoveEndpoint(e)
return nil
}
func (e *Endpoint) close() error {
return e.buffer.Close()
}
// Read reads a packet of len(p) bytes from the underlying conn
// that are matched by the associated MuxFunc
func (e *Endpoint) Read(p []byte) (int, error) {
return e.buffer.Read(p)
}
// Write writes len(p) bytes to the underlying conn
func (e *Endpoint) Write(p []byte) (int, error) {
n, err := e.mux.nextConn.Write(p)
if errors.Is(err, ice.ErrNoCandidatePairs) {
return 0, nil
} else if errors.Is(err, ice.ErrClosed) {
return 0, io.ErrClosedPipe
}
return n, err
}
// LocalAddr is a stub
func (e *Endpoint) LocalAddr() net.Addr {
return e.mux.nextConn.LocalAddr()
}
// RemoteAddr is a stub
func (e *Endpoint) RemoteAddr() net.Addr {
return e.mux.nextConn.RemoteAddr()
}
// SetDeadline is a stub
2024-05-15 23:15:00 +00:00
func (e *Endpoint) SetDeadline(time.Time) error {
2022-03-10 09:44:48 +00:00
return nil
}
// SetReadDeadline is a stub
2024-05-15 23:15:00 +00:00
func (e *Endpoint) SetReadDeadline(time.Time) error {
2022-03-10 09:44:48 +00:00
return nil
}
// SetWriteDeadline is a stub
2024-05-15 23:15:00 +00:00
func (e *Endpoint) SetWriteDeadline(time.Time) error {
2022-03-10 09:44:48 +00:00
return nil
}