Home
last modified time | relevance | path

Searched defs:UDPAddr (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/net/
Dudpsock.go24 type UDPAddr struct { struct
25 IP IP
26 Port int
27 Zone string // IPv6 scoped addressing zone
35 func (a *UDPAddr) AddrPort() netip.AddrPort {
45 func (a *UDPAddr) Network() string { return "udp" }
47 func (a *UDPAddr) String() string {
58 func (a *UDPAddr) isWildcard() bool {
65 func (a *UDPAddr) opAddr() Addr {
290 func DialUDP(network string, laddr, raddr *UDPAddr) (*UDPConn, error) {
[all …]
Dudpsock_posix.go46 func (c *UDPConn) readFrom(b []byte, addr *UDPAddr) (int, *UDPAddr, error) {
113 func (c *UDPConn) writeTo(b []byte, addr *UDPAddr) (int, error) {
165 func (c *UDPConn) writeMsg(b, oob []byte, addr *UDPAddr) (n, oobn int, err error) {
205 func (sd *sysDialer) dialUDP(ctx context.Context, laddr, raddr *UDPAddr) (*UDPConn, error) {
219 func (sl *sysListener) listenUDP(ctx context.Context, laddr *UDPAddr) (*UDPConn, error) {
233 func (sl *sysListener) listenMulticastUDP(ctx context.Context, ifi *Interface, gaddr *UDPAddr) (*UD…
Dudpsock_plan9.go15 func (c *UDPConn) readFrom(b []byte, addr *UDPAddr) (int, *UDPAddr, error) {
55 func (c *UDPConn) writeTo(b []byte, addr *UDPAddr) (int, error) {
79 func (c *UDPConn) writeMsg(b, oob []byte, addr *UDPAddr) (n, oobn int, err error) {
87 func (sd *sysDialer) dialUDP(ctx context.Context, laddr, raddr *UDPAddr) (*UDPConn, error) {
123 func (sl *sysListener) listenUDP(ctx context.Context, laddr *UDPAddr) (*UDPConn, error) {
140 func (sl *sysListener) listenMulticastUDP(ctx context.Context, ifi *Interface, gaddr *UDPAddr) (*UD…