mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/mdns_BCT1.5_reprobe_fix_3.0' into 'release/v3.0'
mdns: fix missing netif reprobing to pass BCT 1.5 (backport v3.0) See merge request idf/esp-idf!5204
This commit is contained in:
commit
8ee7762227
@ -110,6 +110,42 @@ static mdns_srv_item_t * _mdns_get_service_item(const char * service, const char
|
|||||||
* MDNS Server Networking
|
* MDNS Server Networking
|
||||||
* */
|
* */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Compares currently opened pcb's interface ip address with currently assigned tcpip address
|
||||||
|
*
|
||||||
|
* When new IP address is assigned this function can be called if current pcb uses the same IP address
|
||||||
|
* and thus can be reused. Otherwise pcb needs to be reinitialized as it is tightly coupled with it's IP
|
||||||
|
*
|
||||||
|
* @param tcpip_if interface type
|
||||||
|
* @param ip_protocol protocol type
|
||||||
|
*
|
||||||
|
* @return true if current address if different from the one used in pcb
|
||||||
|
*/
|
||||||
|
bool _mdns_pcb_is_ip_updated(tcpip_adapter_if_t tcpip_if, mdns_ip_protocol_t ip_protocol)
|
||||||
|
{
|
||||||
|
tcpip_adapter_ip_info_t if_ip_info;
|
||||||
|
if (!_mdns_server || !_mdns_server->interfaces[tcpip_if].pcbs[ip_protocol].pcb) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
mdns_pcb_t pcb = _mdns_server->interfaces[tcpip_if].pcbs[ip_protocol];
|
||||||
|
|
||||||
|
if (ip_protocol == MDNS_IP_PROTOCOL_V4) {
|
||||||
|
if (tcpip_adapter_get_ip_info(tcpip_if, &if_ip_info) || if_ip_info.ip.addr == 0) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
ip_addr_t interface_addr = IPADDR4_INIT(if_ip_info.ip.addr);
|
||||||
|
return !ip_addr_cmp(&interface_addr, &pcb.if_addr);
|
||||||
|
} else if (ip_protocol == MDNS_IP_PROTOCOL_V6) {
|
||||||
|
ip_addr_t interface_addr;
|
||||||
|
interface_addr.type = IPADDR_TYPE_V6;
|
||||||
|
if (tcpip_adapter_get_ip6_linklocal(tcpip_if, &interface_addr.u_addr.ip6)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return !ip_addr_cmp(&interface_addr, &pcb.if_addr);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Queue RX packet action
|
* @brief Queue RX packet action
|
||||||
*/
|
*/
|
||||||
@ -259,6 +295,7 @@ static esp_err_t _udp_pcb_v4_init(tcpip_adapter_if_t tcpip_if)
|
|||||||
pcb->remote_port = MDNS_SERVICE_PORT;
|
pcb->remote_port = MDNS_SERVICE_PORT;
|
||||||
ip_addr_copy(pcb->multicast_ip, interface_addr);
|
ip_addr_copy(pcb->multicast_ip, interface_addr);
|
||||||
ip_addr_copy(pcb->remote_ip, multicast_addr);
|
ip_addr_copy(pcb->remote_ip, multicast_addr);
|
||||||
|
ip_addr_copy(_mdns_server->interfaces[tcpip_if].pcbs[MDNS_IP_PROTOCOL_V4].if_addr, interface_addr);
|
||||||
|
|
||||||
_mdns_server->interfaces[tcpip_if].pcbs[MDNS_IP_PROTOCOL_V4].pcb = pcb;
|
_mdns_server->interfaces[tcpip_if].pcbs[MDNS_IP_PROTOCOL_V4].pcb = pcb;
|
||||||
_mdns_server->interfaces[tcpip_if].pcbs[MDNS_IP_PROTOCOL_V4].failed_probes = 0;
|
_mdns_server->interfaces[tcpip_if].pcbs[MDNS_IP_PROTOCOL_V4].failed_probes = 0;
|
||||||
@ -300,6 +337,7 @@ static esp_err_t _udp_pcb_v6_init(tcpip_adapter_if_t tcpip_if)
|
|||||||
|
|
||||||
pcb->remote_port = MDNS_SERVICE_PORT;
|
pcb->remote_port = MDNS_SERVICE_PORT;
|
||||||
ip_addr_copy(pcb->remote_ip, multicast_addr);
|
ip_addr_copy(pcb->remote_ip, multicast_addr);
|
||||||
|
ip_addr_copy(_mdns_server->interfaces[tcpip_if].pcbs[MDNS_IP_PROTOCOL_V6].if_addr, interface_addr);
|
||||||
|
|
||||||
_mdns_server->interfaces[tcpip_if].pcbs[MDNS_IP_PROTOCOL_V6].pcb = pcb;
|
_mdns_server->interfaces[tcpip_if].pcbs[MDNS_IP_PROTOCOL_V6].pcb = pcb;
|
||||||
_mdns_server->interfaces[tcpip_if].pcbs[MDNS_IP_PROTOCOL_V6].failed_probes = 0;
|
_mdns_server->interfaces[tcpip_if].pcbs[MDNS_IP_PROTOCOL_V6].failed_probes = 0;
|
||||||
@ -3068,6 +3106,9 @@ clear_rx_packet:
|
|||||||
*/
|
*/
|
||||||
void _mdns_enable_pcb(tcpip_adapter_if_t tcpip_if, mdns_ip_protocol_t ip_protocol)
|
void _mdns_enable_pcb(tcpip_adapter_if_t tcpip_if, mdns_ip_protocol_t ip_protocol)
|
||||||
{
|
{
|
||||||
|
if (_mdns_server->interfaces[tcpip_if].pcbs[ip_protocol].pcb && _mdns_pcb_is_ip_updated(tcpip_if, ip_protocol)) {
|
||||||
|
_mdns_pcb_deinit(tcpip_if, ip_protocol);
|
||||||
|
}
|
||||||
if (!_mdns_server->interfaces[tcpip_if].pcbs[ip_protocol].pcb) {
|
if (!_mdns_server->interfaces[tcpip_if].pcbs[ip_protocol].pcb) {
|
||||||
if (_mdns_pcb_init(tcpip_if, ip_protocol)) {
|
if (_mdns_pcb_init(tcpip_if, ip_protocol)) {
|
||||||
return;
|
return;
|
||||||
|
@ -296,6 +296,7 @@ typedef struct {
|
|||||||
uint8_t probe_ip;
|
uint8_t probe_ip;
|
||||||
uint8_t probe_running;
|
uint8_t probe_running;
|
||||||
uint16_t failed_probes;
|
uint16_t failed_probes;
|
||||||
|
ip_addr_t if_addr;
|
||||||
} mdns_pcb_t;
|
} mdns_pcb_t;
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
|
Loading…
Reference in New Issue
Block a user