Hostname doesn't resolve on iOS and Android
Posted: Mon Aug 26, 2013 2:38 pm
I've got a MOD5234 that sets its hostname and enables NetBIOS:
There's a Windows domain and DNS server on the network, and I can browse the NetBurner by hostname from another Windows machine just fine. However, iOS and Android devices connected via Wi-Fi to the same network can't resolve the name (they can browse by IP address successfully though). Is there something I'm doing wrong, or is this an issue with the network?
Thank you
Code: Select all
// Global
extern const char *pDHCPOfferName;
static char Hostname[20];
// UserMain()
sprintf(Hostname, "Unit%llx", serial_number);
pDHCPOfferName = Hostname;
//...
NetbiosEnableNameService(Hostname, TRUE);
Thank you