You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Replace name with ServiceIdentifier and ServiceQuery in INetworkAutoDiscovery.
ServiceIdentifier should be readonly record class that has a constructor that takes instanceId and serviceId that generates {instanceId}.{serviceId}._tcp.local, and a static factory method that takes a dnsName that lets you specify the whole thing.
ServiceQuery should be a readonly record class that has a constructor that takes serviceId and generates {serviceId}._tcp.local and a static factory method that takes a dnsName that lets you specify the whole thing.
This should prevent the easy accident of specifying name is in the wrong format for register/query (since they are slightly different), which leads to no services being discovered on the network.
Add support for the key-value pairs of DnsServiceConstructInstance in the service instance, and retrieving this information on queries. We want to be able to use this information so that services can advertise public keys in DNS for establishing secure connections.
The text was updated successfully, but these errors were encountered:
A few things to do here:
name
withServiceIdentifier
andServiceQuery
inINetworkAutoDiscovery
.ServiceIdentifier
should be readonly record class that has a constructor that takesinstanceId
andserviceId
that generates{instanceId}.{serviceId}._tcp.local
, and a static factory method that takes adnsName
that lets you specify the whole thing.ServiceQuery
should be a readonly record class that has a constructor that takesserviceId
and generates{serviceId}._tcp.local
and a static factory method that takes adnsName
that lets you specify the whole thing.name
is in the wrong format for register/query (since they are slightly different), which leads to no services being discovered on the network.DnsServiceConstructInstance
in the service instance, and retrieving this information on queries. We want to be able to use this information so that services can advertise public keys in DNS for establishing secure connections.The text was updated successfully, but these errors were encountered: