ProtoCore v0.0.1
Deterministic, zero-heap network stack for embedded targets
Loading...
Searching...
No Matches
mDNS - advertise the device over mDNS / DNS-SD

Layer: L7 Application ยท Build flags: PC_ENABLE_MDNS

What this example teaches

mDNS (multicast DNS) plus DNS-SD lets a device be found on the LAN by name and by service, with no central DNS server. pc_mdns_begin(hostname, port) claims <hostname>.local and advertises an _http._tcp service, so a browser or a DNS-SD tool finds the board without anyone knowing its IP.

One call to claim a name and advertise HTTP:

server.begin(80);
if (pc_mdns_begin(HOSTNAME, 80)) {
pc_mdns_txt("path", "/"); // TXT records shown by DNS-SD browsers
pc_mdns_txt("fw", "1.0");
pc_mdns_add_service("_https", "_tcp", 443); // advertise a second service
}
bool pc_mdns_begin(const char *hostname, uint16_t http_port)
Start mDNS responder and advertise an HTTP service.
bool pc_mdns_add_service(const char *service_type, const char *proto, uint16_t port)
Advertise an additional service, e.g. ("_https", "_tcp", 443).
bool pc_mdns_txt(const char *key, const char *value)
Add a TXT key/value record to the advertised _http._tcp service.

pc_mdns_txt() attaches Bonjour TXT key/value pairs to the primary service, and pc_mdns_add_service() advertises additional services (here HTTPS on 443). After flashing you can reach the board at http://pc-demo.local/ and see it in any DNS-SD browser (dns-sd -B _http._tcp, Avahi, Bonjour).

Build and run

pio ci --board=esp32dev --project-option="framework=arduino" \
--project-option="build_flags=-DPC_ENABLE_MDNS=1" \
--lib="." examples/L7-Application/mDNS/mDNS.ino
ping pc-demo.local
curl http://pc-demo.local/
dns-sd -B _http._tcp # macOS / DNS-SD: discover the advertised service

Annotated source

The complete sketch (mDNS.ino), reproduced verbatim with added explanatory comments:

// Copyright (C) 2026 Douglas Quigg (dstroy0) <dquigg123@gmail.com>
// SPDX-License-Identifier: AGPL-3.0-or-later
#define PC_ENABLE_MDNS 1
#include "protocore.h"
#include "services/mdns_service.h"
static const char *SSID = "YOUR_SSID";
static const char *PASSWORD = "YOUR_PASSWORD";
static const char *HOSTNAME = "pc-demo"; // -> pc-demo.local
PC server;
void setup()
{
Serial.begin(115200);
init_wifi_physical(SSID, PASSWORD);
Serial.print("Connecting to WiFi");
while (!wifi_ready())
{
delay(250);
Serial.print('.');
}
uint32_t ip = pc_net_egress_ip(); // library egress IP (network byte order), no Arduino WiFi
Serial.printf("IP: %u.%u.%u.%u\n", (unsigned)(ip & 0xFF), (unsigned)((ip >> 8) & 0xFF),
(unsigned)((ip >> 16) & 0xFF), (unsigned)((ip >> 24) & 0xFF));
server.on("/", HttpMethod::HTTP_GET, [](uint8_t id, HttpReq *) { server.send(id, 200, "text/plain", "hello via mDNS"); });
server.begin(80);
// Claim <hostname>.local and advertise _http._tcp on port 80.
if (pc_mdns_begin(HOSTNAME, 80))
{
// Bonjour TXT records (shown by DNS-SD browsers) + advertise HTTPS too.
pc_mdns_txt("path", "/");
pc_mdns_txt("fw", "1.0");
pc_mdns_add_service("_https", "_tcp", 443);
Serial.printf("mDNS: http://%s.local/\n", HOSTNAME);
}
}
void loop()
{
server.handle();
}
Single-port HTTP server with deterministic, zero-allocation execution.
Definition protocore.h:348
void send(uint8_t slot_id, int code, const char *content_type, const char *payload)
Send an HTTP response with a body and close the connection.
int32_t begin(const WebServerConfig *cfg=nullptr)
Initialize all connection slots and open all registered listeners.
void on(const char *path, HttpMethod method, Handler callback)
Register a route handler.
void handle()
Drive the server - call every Arduino loop() iteration.
bool init_wifi_physical(const char *, const char *)
Connect to a WiFi access point.
Definition physical.cpp:41
uint32_t pc_net_egress_ip(void)
IPv4 (network byte order) of the current egress interface, or 0 if none.
Definition physical.cpp:77
bool wifi_ready()
True if the WiFi station link is up (associated + an IP is assigned).
Definition physical.cpp:45
Layer 1 (Physical) - link bring-up and live egress-interface reporting.
Layer 7 (Application) - public HTTP routing API.
@ HTTP_GET
Safe, idempotent read.
Fully-parsed HTTP/1.1 request.