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
According to documentation of Bonjour service "The options are optional and will be used when initializing the underlying multicast-dns server. For details see the multicast-dns documentation."
But this is not true because constructor takes parameters like constructor(opts: Partial<ServiceConfig> = {}, errorCallback?: Function | undefined)
ServiceConfig does not have properties that corresponds to multicast-dns server options like interface, which I need.
Moreover if I try provide options like { interface: '...' } as any the interface param is ommited anyway.
The text was updated successfully, but these errors were encountered:
According to documentation of Bonjour service "The options are optional and will be used when initializing the underlying multicast-dns server. For details see the multicast-dns documentation."
But this is not true because constructor takes parameters like
constructor(opts: Partial<ServiceConfig> = {}, errorCallback?: Function | undefined)
ServiceConfig
does not have properties that corresponds to multicast-dns server options likeinterface
, which I need.Moreover if I try provide options like
{ interface: '...' } as any
the interface param is ommited anyway.The text was updated successfully, but these errors were encountered: