Statistics: Posted by mriksman — Sun Jul 19, 2020 1:33 pm
Statistics: Posted by Her Mary — Sun Jul 19, 2020 1:17 pm
Code:
struct addrinfo hints, *res;
int status;
memset(&hints, 0, sizeof(hints));
hints.ai_family = AF_INET;
hints.ai_socktype = SOCK_STREAM;
char *host = "esp_942daf.local";
char *port = "5556";
status = getaddrinfo("esp_942daf.local", "80", &hints, &res)
Code:
EAI_FAIL
Code:
192.168.1.187 224.0.0.251 MDNS Standard query 0x3090 A esp_942daf.local, "QM" question
Code:
struct ip4_addr addr;
addr.addr = 0;
mdns_query_a("esp_99a744", 2000, &addr);
Code:
192.168.1.187 224.0.0.251 MDNS Standard query 0x0000 A esp_99a744.local, "QU" question
Code:
HPC8D9D240DB2B.local
Code:
getaddrinfo
Statistics: Posted by mriksman — Tue Jun 30, 2020 5:26 pm