Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added mDNS support for AP interface #40

Closed
wants to merge 1 commit into from

Conversation

Rocketct
Copy link
Contributor

@Rocketct Rocketct commented Nov 28, 2019

Added mDNS support for AP interface to allow the hostname management when AP configuration is enabled

cc:/ @facchinm @sandeepmistry test and take a look on the sdkconfig there is somethings of new
i had just make some tests and seems that works fine, i tried also to connect two device in the same time and all goes fine

this fix arduino-libraries/WiFiNINA#92 for 1010, Iot 33 and works also on uno WiFi

Added mDNS support for AP interface to allow the hostname management when AP configuration is enabled
@@ -206,6 +206,12 @@ CONFIG_EFUSE_MAX_BLK_LEN=192
# ESP32-specific
#
CONFIG_IDF_TARGET_ESP32=y
CONFIG_ESP32_REV_MIN_0=y
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Which IDF are you using? If it's an IDF update, it should be an independent commit.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are these all the default values?

Copy link
Contributor Author

@Rocketct Rocketct Dec 3, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes is the one we suggest on the install on the read me, maybe i enable unvolontarly i'm work to remove it

@@ -697,6 +703,15 @@ void WiFiClass::handleSystemEvent(system_event_t* event)
case SYSTEM_EVENT_AP_START: {
struct netif* apNetif;

mdns_init();
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are you sure this mdns_init is needed? I believe without it macOS was fine in STA mode, should we also port to STA mode?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As described by the example seems yes, its recommend by the example, i had test adding in the properly interface like how we do in STA but not works i had found an issue on the epressif repo.
This is why i suppose to test the mdns and from the result was that works for the access point.
We can try to move on other direction implement in STA mode and removing the interface management if a plus.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As i understand when the AP interface is used we should enable a dns local instance because we don't have a reference DNS Server like the STA (i'm testing it).
Now i'm try to correctly configure the local dns and ad the feature AS_DYNAMIC in order to be able to manage the lookup table and the new rules if this works we could leave the idea of implement the mdns.

@@ -705,6 +720,8 @@ void WiFiClass::handleSystemEvent(system_event_t* event)
}
}

mdns_hostname_set(_hostname);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's the difference between mdns_hostname_set and tcpip_adapter_set_hostname?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

mdns_hostname_set set the name on the mdns onject the other goes to set the hostname on the lwip tcpip interface

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe the second is useless while mdns is enabled

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

in STA mode mdns not works

// defines required from mdns service
#define LWIP_MDNS_RESPONDER 1
#define LWIP_IGM 1
#define LWIP_IPV4 1
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems really strange we need these defines to be manually added ... are you sure we need them?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

removed!! added on the kconfig

@Rocketct
Copy link
Contributor Author

Rocketct commented Dec 9, 2019

closed the issue because the actual behavior match with the one of the mkr1000

@Rocketct Rocketct closed this Dec 9, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Issues in WiFiNINA for MKR 1010 and Nano 33 IoT
2 participants