pub async fn browse_instance<SF: UdpSocketFactory>(
remote_addr: IpAddr,
instance_name: &str,
socket_factory: &mut SF,
) -> Result<InstanceInfo, BrowserError<SF::Error, <SF::Socket as UdpSocket>::Error>>
Expand description
Gets information about the given instance.
ยงArguments
remote_addr
- The address of the remote host on which the instance is running.instance_name
- The name of the instance, must be less thanMAX_INSTANCE_NAME_LEN
characters.