mirror of
https://git.savannah.nongnu.org/git/lwip.git
synced 2026-05-16 05:06:54 +08:00
mdns: defined the service slot id as unsigned rather than signed.
This commit is contained in:
committed by
Dirk Ziegelmeier
parent
2229c51704
commit
46bbfe4ee2
@@ -110,8 +110,8 @@ err_t mdns_resp_remove_netif(struct netif *netif);
|
||||
err_t mdns_resp_rename_netif(struct netif *netif, const char *hostname);
|
||||
|
||||
s8_t mdns_resp_add_service(struct netif *netif, const char *name, const char *service, enum mdns_sd_proto proto, u16_t port, service_get_txt_fn_t txt_fn, void *txt_userdata);
|
||||
err_t mdns_resp_del_service(struct netif *netif, s8_t slot);
|
||||
err_t mdns_resp_rename_service(struct netif *netif, s8_t slot, const char *name);
|
||||
err_t mdns_resp_del_service(struct netif *netif, u8_t slot);
|
||||
err_t mdns_resp_rename_service(struct netif *netif, u8_t slot, const char *name);
|
||||
|
||||
err_t mdns_resp_add_service_txtitem(struct mdns_service *service, const char *txt, u8_t txt_len);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user