summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJens Nielsen <[email protected]>2018-01-16 22:47:00 +0100
committerSimon Goldschmidt <[email protected]>2018-06-28 21:41:10 +0200
commit9f1196fb535c0b8026258baabd02eb6fafbdab84 (patch)
tree0e2d7577acbe4c2a6bba6a2c2cde90dfb6ca72d7 /doc
parent8223a8c73c8939ec8ae96690ae4abd9d7697eba0 (diff)
MDNS send probes to verify domain before use
Signed-off-by: Simon Goldschmidt <[email protected]>
Diffstat (limited to 'doc')
-rw-r--r--doc/mdns.txt13
1 files changed, 6 insertions, 7 deletions
diff --git a/doc/mdns.txt b/doc/mdns.txt
index c5929b76..0c28970d 100644
--- a/doc/mdns.txt
+++ b/doc/mdns.txt
@@ -57,11 +57,11 @@ Answers will use the supplied TTL (in seconds)
MDNS allows UTF-8 names, but it is recommended to stay within ASCII,
since the default case-insensitive comparison assumes this.
-It is recommended to call this function after an IPv4 address has been set,
-since there is currently no check if the v4 address is valid.
+Call mdns_resp_announce() every time the IP address on the netif has changed.
-Call mdns_resp_netif_settings_changed() every time the IP address
-on the netif has changed.
+Call mdns_resp_restart() every time the network interface comes up after being
+down, for example cable connected after being disconnected, administrative
+interface comes up after being down, or the device wakes up from sleep.
To stop responding on a netif, run
mdns_resp_remove_netif(struct netif *netif)
@@ -108,6 +108,5 @@ and point them to <hostname>.local:80
Relevant information will be sent as additional records to reduce number of
requests required from a client.
-Removing services is currently not supported. Services are removed when the
-netif is removed.
-
+To remove a service from a netif, run
+ mdns_resp_del_service(struct netif *netif, s8_t slot) \ No newline at end of file