From d08ee4e63a0acce1c680eb51553d4b2d4f3c4ee2 Mon Sep 17 00:00:00 2001 From: "Sergio R. Caprile" Date: Thu, 25 Apr 2024 15:18:59 -0300 Subject: [PATCH] move to new skeleton --- examples/captive-dns-server/README.md | 1 - examples/captive-dns-server/mongoose.c | 1 - examples/captive-dns-server/mongoose.h | 1 - examples/sntp-time-sync/README.md | 1 - examples/sntp-time-sync/mongoose.c | 1 - examples/sntp-time-sync/mongoose.h | 1 - examples/udp-ssdp-search/README.md | 1 - examples/udp-ssdp-search/mongoose.c | 1 - examples/udp-ssdp-search/mongoose.h | 1 - {examples => tutorials/udp}/captive-dns-server/Makefile | 0 tutorials/udp/captive-dns-server/README.md | 1 + {examples => tutorials/udp}/captive-dns-server/main.c | 0 tutorials/udp/captive-dns-server/mongoose.c | 1 + tutorials/udp/captive-dns-server/mongoose.h | 1 + {examples => tutorials/udp}/sntp-time-sync/Makefile | 0 tutorials/udp/sntp-time-sync/README.md | 1 + {examples => tutorials/udp}/sntp-time-sync/main.c | 0 tutorials/udp/sntp-time-sync/mongoose.c | 1 + tutorials/udp/sntp-time-sync/mongoose.h | 1 + {examples/udp-ssdp-search => tutorials/udp/ssdp-search}/Makefile | 0 tutorials/udp/ssdp-search/README.md | 1 + {examples/udp-ssdp-search => tutorials/udp/ssdp-search}/main.c | 0 tutorials/udp/ssdp-search/mongoose.c | 1 + tutorials/udp/ssdp-search/mongoose.h | 1 + 24 files changed, 9 insertions(+), 9 deletions(-) delete mode 100644 examples/captive-dns-server/README.md delete mode 120000 examples/captive-dns-server/mongoose.c delete mode 120000 examples/captive-dns-server/mongoose.h delete mode 100644 examples/sntp-time-sync/README.md delete mode 120000 examples/sntp-time-sync/mongoose.c delete mode 120000 examples/sntp-time-sync/mongoose.h delete mode 100644 examples/udp-ssdp-search/README.md delete mode 120000 examples/udp-ssdp-search/mongoose.c delete mode 120000 examples/udp-ssdp-search/mongoose.h rename {examples => tutorials/udp}/captive-dns-server/Makefile (100%) create mode 100644 tutorials/udp/captive-dns-server/README.md rename {examples => tutorials/udp}/captive-dns-server/main.c (100%) create mode 120000 tutorials/udp/captive-dns-server/mongoose.c create mode 120000 tutorials/udp/captive-dns-server/mongoose.h rename {examples => tutorials/udp}/sntp-time-sync/Makefile (100%) create mode 100644 tutorials/udp/sntp-time-sync/README.md rename {examples => tutorials/udp}/sntp-time-sync/main.c (100%) create mode 120000 tutorials/udp/sntp-time-sync/mongoose.c create mode 120000 tutorials/udp/sntp-time-sync/mongoose.h rename {examples/udp-ssdp-search => tutorials/udp/ssdp-search}/Makefile (100%) create mode 100644 tutorials/udp/ssdp-search/README.md rename {examples/udp-ssdp-search => tutorials/udp/ssdp-search}/main.c (100%) create mode 120000 tutorials/udp/ssdp-search/mongoose.c create mode 120000 tutorials/udp/ssdp-search/mongoose.h diff --git a/examples/captive-dns-server/README.md b/examples/captive-dns-server/README.md deleted file mode 100644 index ae860fb64d..0000000000 --- a/examples/captive-dns-server/README.md +++ /dev/null @@ -1 +0,0 @@ -See detailed tutorial at https://mongoose.ws/tutorials/captive-dns-server/ diff --git a/examples/captive-dns-server/mongoose.c b/examples/captive-dns-server/mongoose.c deleted file mode 120000 index 8ef6e62d4e..0000000000 --- a/examples/captive-dns-server/mongoose.c +++ /dev/null @@ -1 +0,0 @@ -../../mongoose.c \ No newline at end of file diff --git a/examples/captive-dns-server/mongoose.h b/examples/captive-dns-server/mongoose.h deleted file mode 120000 index 488ef35873..0000000000 --- a/examples/captive-dns-server/mongoose.h +++ /dev/null @@ -1 +0,0 @@ -../../mongoose.h \ No newline at end of file diff --git a/examples/sntp-time-sync/README.md b/examples/sntp-time-sync/README.md deleted file mode 100644 index 3436aed4fe..0000000000 --- a/examples/sntp-time-sync/README.md +++ /dev/null @@ -1 +0,0 @@ -See detailed tutorial at https://mongoose.ws/tutorials/sntp-time-sync/ diff --git a/examples/sntp-time-sync/mongoose.c b/examples/sntp-time-sync/mongoose.c deleted file mode 120000 index 8ef6e62d4e..0000000000 --- a/examples/sntp-time-sync/mongoose.c +++ /dev/null @@ -1 +0,0 @@ -../../mongoose.c \ No newline at end of file diff --git a/examples/sntp-time-sync/mongoose.h b/examples/sntp-time-sync/mongoose.h deleted file mode 120000 index 488ef35873..0000000000 --- a/examples/sntp-time-sync/mongoose.h +++ /dev/null @@ -1 +0,0 @@ -../../mongoose.h \ No newline at end of file diff --git a/examples/udp-ssdp-search/README.md b/examples/udp-ssdp-search/README.md deleted file mode 100644 index d6ed224d15..0000000000 --- a/examples/udp-ssdp-search/README.md +++ /dev/null @@ -1 +0,0 @@ -See detailed tutorial at https://mongoose.ws/tutorials/udp-ssdp-search/ diff --git a/examples/udp-ssdp-search/mongoose.c b/examples/udp-ssdp-search/mongoose.c deleted file mode 120000 index 8ef6e62d4e..0000000000 --- a/examples/udp-ssdp-search/mongoose.c +++ /dev/null @@ -1 +0,0 @@ -../../mongoose.c \ No newline at end of file diff --git a/examples/udp-ssdp-search/mongoose.h b/examples/udp-ssdp-search/mongoose.h deleted file mode 120000 index 488ef35873..0000000000 --- a/examples/udp-ssdp-search/mongoose.h +++ /dev/null @@ -1 +0,0 @@ -../../mongoose.h \ No newline at end of file diff --git a/examples/captive-dns-server/Makefile b/tutorials/udp/captive-dns-server/Makefile similarity index 100% rename from examples/captive-dns-server/Makefile rename to tutorials/udp/captive-dns-server/Makefile diff --git a/tutorials/udp/captive-dns-server/README.md b/tutorials/udp/captive-dns-server/README.md new file mode 100644 index 0000000000..026efcaddd --- /dev/null +++ b/tutorials/udp/captive-dns-server/README.md @@ -0,0 +1 @@ +See detailed tutorial at https://mongoose.ws/tutorials/udp/captive-dns-server/ diff --git a/examples/captive-dns-server/main.c b/tutorials/udp/captive-dns-server/main.c similarity index 100% rename from examples/captive-dns-server/main.c rename to tutorials/udp/captive-dns-server/main.c diff --git a/tutorials/udp/captive-dns-server/mongoose.c b/tutorials/udp/captive-dns-server/mongoose.c new file mode 120000 index 0000000000..5e522bbcd4 --- /dev/null +++ b/tutorials/udp/captive-dns-server/mongoose.c @@ -0,0 +1 @@ +../../../mongoose.c \ No newline at end of file diff --git a/tutorials/udp/captive-dns-server/mongoose.h b/tutorials/udp/captive-dns-server/mongoose.h new file mode 120000 index 0000000000..ee4ac82323 --- /dev/null +++ b/tutorials/udp/captive-dns-server/mongoose.h @@ -0,0 +1 @@ +../../../mongoose.h \ No newline at end of file diff --git a/examples/sntp-time-sync/Makefile b/tutorials/udp/sntp-time-sync/Makefile similarity index 100% rename from examples/sntp-time-sync/Makefile rename to tutorials/udp/sntp-time-sync/Makefile diff --git a/tutorials/udp/sntp-time-sync/README.md b/tutorials/udp/sntp-time-sync/README.md new file mode 100644 index 0000000000..130a78b0ad --- /dev/null +++ b/tutorials/udp/sntp-time-sync/README.md @@ -0,0 +1 @@ +See detailed tutorial at https://mongoose.ws/tutorials/udp/sntp-time-sync/ diff --git a/examples/sntp-time-sync/main.c b/tutorials/udp/sntp-time-sync/main.c similarity index 100% rename from examples/sntp-time-sync/main.c rename to tutorials/udp/sntp-time-sync/main.c diff --git a/tutorials/udp/sntp-time-sync/mongoose.c b/tutorials/udp/sntp-time-sync/mongoose.c new file mode 120000 index 0000000000..5e522bbcd4 --- /dev/null +++ b/tutorials/udp/sntp-time-sync/mongoose.c @@ -0,0 +1 @@ +../../../mongoose.c \ No newline at end of file diff --git a/tutorials/udp/sntp-time-sync/mongoose.h b/tutorials/udp/sntp-time-sync/mongoose.h new file mode 120000 index 0000000000..ee4ac82323 --- /dev/null +++ b/tutorials/udp/sntp-time-sync/mongoose.h @@ -0,0 +1 @@ +../../../mongoose.h \ No newline at end of file diff --git a/examples/udp-ssdp-search/Makefile b/tutorials/udp/ssdp-search/Makefile similarity index 100% rename from examples/udp-ssdp-search/Makefile rename to tutorials/udp/ssdp-search/Makefile diff --git a/tutorials/udp/ssdp-search/README.md b/tutorials/udp/ssdp-search/README.md new file mode 100644 index 0000000000..b1bf57087b --- /dev/null +++ b/tutorials/udp/ssdp-search/README.md @@ -0,0 +1 @@ +See detailed tutorial at https://mongoose.ws/tutorials/udp/ssdp-search/ diff --git a/examples/udp-ssdp-search/main.c b/tutorials/udp/ssdp-search/main.c similarity index 100% rename from examples/udp-ssdp-search/main.c rename to tutorials/udp/ssdp-search/main.c diff --git a/tutorials/udp/ssdp-search/mongoose.c b/tutorials/udp/ssdp-search/mongoose.c new file mode 120000 index 0000000000..5e522bbcd4 --- /dev/null +++ b/tutorials/udp/ssdp-search/mongoose.c @@ -0,0 +1 @@ +../../../mongoose.c \ No newline at end of file diff --git a/tutorials/udp/ssdp-search/mongoose.h b/tutorials/udp/ssdp-search/mongoose.h new file mode 120000 index 0000000000..ee4ac82323 --- /dev/null +++ b/tutorials/udp/ssdp-search/mongoose.h @@ -0,0 +1 @@ +../../../mongoose.h \ No newline at end of file