UDP packet peer. UDP packet peer. Can be used to send raw UDP packets as well as [Variant]s. Close the UDP socket the [PacketPeerUDP] is currently listening on. Returns the IP of the remote peer that sent the last packet(that was received with [method PacketPeer.get_packet] or [method PacketPeer.get_var]). Returns the port of the remote peer that sent the last packet(that was received with [method PacketPeer.get_packet] or [method PacketPeer.get_var]). Returns whether this [PacketPeerUDP] is listening. Join the multicast group specified by [code]multicast_address[/code] using the interface identified by [code]interface_name[/code]. You can join the same multicast group with multiple interfaces. Use [method IP.get_local_interfaces] to know which are available. Remove the interface identified by [code]interface_name[/code] from the multicast group specified by [code]multicast_address[/code]. Make this [PacketPeerUDP] listen on the "port" binding to "bind_address" with a buffer size "recv_buf_size". If "bind_address" is set as "*" (default), the peer will listen on all available addresses (both IPv4 and IPv6). If "bind_address" is set as "0.0.0.0" (for IPv4) or "::" (for IPv6), the peer will listen on all available addresses matching that IP type. If "bind_address" is set to any valid address (e.g. "192.168.1.101", "::1", etc), the peer will only listen on the interface with that addresses (or fail if no interface with the given address exists). Set the destination address and port for sending packets and variables, a hostname will be resolved using if valid. Wait for a packet to arrive on the listening port, see [method listen].