2022-01-05 21:22:00 +08:00
|
|
|
// Copyright (c) 2022 Cesanta Software Limited
|
|
|
|
// All rights reserved
|
|
|
|
|
|
|
|
#include "mongoose.h"
|
|
|
|
|
|
|
|
static const char *s_ssdp_url = "udp://239.255.255.250:1900";
|
|
|
|
|
|
|
|
static void fn(struct mg_connection *c, int ev, void *ev_data, void *fn_data) {
|
2022-02-13 02:17:25 +08:00
|
|
|
MG_DEBUG(("%p got event: %d %p %p", c, ev, ev_data, fn_data));
|
2022-01-08 02:40:48 +08:00
|
|
|
if (ev == MG_EV_OPEN) {
|
|
|
|
c->is_hexdumping = 1;
|
|
|
|
} else if (ev == MG_EV_RESOLVE) {
|
2022-02-23 06:00:55 +08:00
|
|
|
// c->rem gets populated with multicast address. Store it in c->label
|
|
|
|
memcpy(c->label, &c->rem, sizeof(c->rem));
|
2022-01-08 02:40:48 +08:00
|
|
|
} else if (ev == MG_EV_READ) {
|
2022-02-23 06:00:55 +08:00
|
|
|
// Each response to the SSDP socket will change c->rem.
|
2022-01-08 02:40:48 +08:00
|
|
|
// We can now do mg_printf(c, "haha"); to respond back to the remote side.
|
|
|
|
// But in our case, we should restore the multicast address in order
|
|
|
|
// to have next search to go to the multicast address
|
2022-02-23 06:00:55 +08:00
|
|
|
memcpy(&c->rem, c->label, sizeof(c->rem));
|
2022-01-08 02:40:48 +08:00
|
|
|
}
|
2022-01-05 21:22:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void tfn(void *param) {
|
|
|
|
struct mg_connection *c = param;
|
|
|
|
if (c == NULL) return;
|
2022-02-13 02:17:25 +08:00
|
|
|
MG_INFO(("Sending M-SEARCH"));
|
2022-01-05 21:22:00 +08:00
|
|
|
mg_printf(c, "%s",
|
|
|
|
"M-SEARCH * HTTP/1.1\r\n"
|
|
|
|
"HOST: 239.255.255.250:1900\r\n"
|
|
|
|
"MAN: \"ssdp:discover\"\r\n"
|
|
|
|
"ST: urn:schemas-upnp-org:device:MediaRenderer:1\r\n"
|
|
|
|
"MX: 5\r\n"
|
|
|
|
"\r\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(void) {
|
|
|
|
struct mg_mgr mgr;
|
|
|
|
struct mg_timer timer;
|
|
|
|
static struct mg_connection *c;
|
|
|
|
mg_mgr_init(&mgr);
|
|
|
|
c = mg_connect(&mgr, s_ssdp_url, fn, NULL);
|
|
|
|
mg_timer_init(&timer, 2000, MG_TIMER_REPEAT | MG_TIMER_RUN_NOW, tfn, c);
|
|
|
|
while (true) mg_mgr_poll(&mgr, 200);
|
|
|
|
mg_mgr_free(&mgr);
|
|
|
|
return 0;
|
|
|
|
}
|