Searched defs:UDPConn (Results 1 – 3 of 3) sorted by relevance
/aosp_15_r20/prebuilts/go/linux-x86/src/net/ |
D | udpsock.go | 122 type UDPConn struct { struct 123 conn 128 func (c *UDPConn) SyscallConn() (syscall.RawConn, error) { 136 func (c *UDPConn) ReadFromUDP(b []byte) (n int, addr *UDPAddr, err error) { 145 func (c *UDPConn) readFromUDP(b []byte, addr *UDPAddr) (int, *UDPAddr, error) { 157 func (c *UDPConn) ReadFrom(b []byte) (int, Addr, error) { 171 func (c *UDPConn) ReadFromUDPAddrPort(b []byte) (n int, addr netip.AddrPort, err error) { 189 func (c *UDPConn) ReadMsgUDP(b, oob []byte) (n, oobn, flags int, addr *UDPAddr, err error) { 199 … *UDPConn) ReadMsgUDPAddrPort(b, oob []byte) (n, oobn, flags int, addr netip.AddrPort, err error) { 211 func (c *UDPConn) WriteToUDP(b []byte, addr *UDPAddr) (int, error) { [all …]
|
D | udpsock_posix.go | 259 func listenIPv4MulticastUDP(c *UDPConn, ifi *Interface, ip IP) error { 274 func listenIPv6MulticastUDP(c *UDPConn, ifi *Interface, ip IP) error {
|
D | listen_test.go | 657 func checkMulticastListener(c *UDPConn, ip IP) error {
|