mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-24 02:59:01 +08:00
move to new skeleton
This commit is contained in:
parent
290d48e1aa
commit
8c5dfa4227
@ -1 +0,0 @@
|
||||
See detailed tutorial at https://mongoose.ws/tutorials/http-client/
|
@ -1 +0,0 @@
|
||||
../../../test/data/ca.pem
|
@ -1 +0,0 @@
|
||||
../../mongoose.c
|
@ -1 +0,0 @@
|
||||
../../mongoose.h
|
@ -1 +0,0 @@
|
||||
See detailed tutorial at https://mongoose.ws/tutorials/http-proxy-client/
|
@ -1 +0,0 @@
|
||||
../../mongoose.c
|
@ -1 +0,0 @@
|
||||
../../mongoose.h
|
@ -1 +0,0 @@
|
||||
See detailed tutorial at https://mongoose.ws/tutorials/http-reverse-proxy/
|
@ -1 +0,0 @@
|
||||
../../mongoose.c
|
@ -1 +0,0 @@
|
||||
../../mongoose.h
|
@ -1 +0,0 @@
|
||||
../../mongoose.c
|
@ -1 +0,0 @@
|
||||
../../mongoose.h
|
@ -1 +0,0 @@
|
||||
../../mongoose.c
|
@ -1 +0,0 @@
|
||||
../../mongoose.h
|
@ -1 +0,0 @@
|
||||
../http-client/packed_fs.c
|
@ -1 +0,0 @@
|
||||
See detailed tutorial at https://mongoose.ws/tutorials/mqtt-client/
|
@ -1 +0,0 @@
|
||||
../../mongoose.c
|
@ -1 +0,0 @@
|
||||
../../mongoose.h
|
@ -1 +0,0 @@
|
||||
../http-client/packed_fs.c
|
@ -1 +0,0 @@
|
||||
See detailed tutorial at https://mongoose.ws/tutorials/mqtt-over-ws-client/
|
@ -1 +0,0 @@
|
||||
../../mongoose.c
|
@ -1 +0,0 @@
|
||||
../../mongoose.h
|
@ -1 +0,0 @@
|
||||
../http-client/packed_fs.c
|
@ -1 +0,0 @@
|
||||
See detailed tutorial at https://mongoose.ws/tutorials/mqtt-server/
|
@ -1 +0,0 @@
|
||||
../../mongoose.c
|
@ -1 +0,0 @@
|
||||
../../mongoose.h
|
@ -1 +0,0 @@
|
||||
../../mongoose.c
|
@ -1 +0,0 @@
|
||||
../../mongoose.h
|
@ -1 +0,0 @@
|
||||
../http-client/packed_fs.c
|
@ -29,7 +29,7 @@ clean: # Cleanup. Delete built program and all build artifact
|
||||
|
||||
# Generate packed filesystem for serving cert
|
||||
packed_fs.c: $(wildcard certs/*) Makefile
|
||||
$(CC) ../../test/pack.c -o $(PACK)
|
||||
$(CC) ../../../test/pack.c -o $(PACK)
|
||||
$(PACK) $(wildcard certs/*) > $@
|
||||
|
||||
# see https://mongoose.ws/tutorials/tls/#how-to-build for TLS build options
|
1
tutorials/http/http-client/README.md
Normal file
1
tutorials/http/http-client/README.md
Normal file
@ -0,0 +1 @@
|
||||
See detailed tutorial at https://mongoose.ws/tutorials/http/http-client/
|
1
tutorials/http/http-client/certs/ca.pem
Symbolic link
1
tutorials/http/http-client/certs/ca.pem
Symbolic link
@ -0,0 +1 @@
|
||||
../../../../test/data/ca.pem
|
1
tutorials/http/http-client/mongoose.c
Symbolic link
1
tutorials/http/http-client/mongoose.c
Symbolic link
@ -0,0 +1 @@
|
||||
../../../mongoose.c
|
1
tutorials/http/http-client/mongoose.h
Symbolic link
1
tutorials/http/http-client/mongoose.h
Symbolic link
@ -0,0 +1 @@
|
||||
../../../mongoose.h
|
@ -2556,7 +2556,7 @@ static const struct packed_file {
|
||||
size_t size;
|
||||
time_t mtime;
|
||||
} packed_files[] = {
|
||||
{"/certs/ca.pem", v1, sizeof(v1), 1694162397},
|
||||
{"/certs/ca.pem", v1, sizeof(v1), 1713395242},
|
||||
{NULL, NULL, 0, 0}
|
||||
};
|
||||
|
1
tutorials/http/http-proxy-client/README.md
Normal file
1
tutorials/http/http-proxy-client/README.md
Normal file
@ -0,0 +1 @@
|
||||
See detailed tutorial at https://mongoose.ws/tutorials/http/http-proxy-client/
|
1
tutorials/http/http-proxy-client/mongoose.c
Symbolic link
1
tutorials/http/http-proxy-client/mongoose.c
Symbolic link
@ -0,0 +1 @@
|
||||
../../../mongoose.c
|
1
tutorials/http/http-proxy-client/mongoose.h
Symbolic link
1
tutorials/http/http-proxy-client/mongoose.h
Symbolic link
@ -0,0 +1 @@
|
||||
../../../mongoose.h
|
1
tutorials/http/http-reverse-proxy/README.md
Normal file
1
tutorials/http/http-reverse-proxy/README.md
Normal file
@ -0,0 +1 @@
|
||||
See detailed tutorial at https://mongoose.ws/tutorials/http/http-reverse-proxy/
|
1
tutorials/http/http-reverse-proxy/mongoose.c
Symbolic link
1
tutorials/http/http-reverse-proxy/mongoose.c
Symbolic link
@ -0,0 +1 @@
|
||||
../../../mongoose.c
|
1
tutorials/http/http-reverse-proxy/mongoose.h
Symbolic link
1
tutorials/http/http-reverse-proxy/mongoose.h
Symbolic link
@ -0,0 +1 @@
|
||||
../../../mongoose.h
|
1
tutorials/http/http-streaming-client/mongoose.c
Symbolic link
1
tutorials/http/http-streaming-client/mongoose.c
Symbolic link
@ -0,0 +1 @@
|
||||
../../../mongoose.c
|
1
tutorials/http/http-streaming-client/mongoose.h
Symbolic link
1
tutorials/http/http-streaming-client/mongoose.h
Symbolic link
@ -0,0 +1 @@
|
||||
../../../mongoose.h
|
@ -1,2 +1,2 @@
|
||||
- This example requires generating AWS and user credentials and downloading certificates
|
||||
- This example requires building with TLS support; before running, see detailed tutorial at https://mongoose.ws/tutorials/mqtt-client-aws-iot/
|
||||
- This example requires building with TLS support; before running, see detailed tutorial at https://mongoose.ws/tutorials/mqtt/mqtt-client-aws-iot/
|
1
tutorials/mqtt/mqtt-client-aws-iot/mongoose.c
Symbolic link
1
tutorials/mqtt/mqtt-client-aws-iot/mongoose.c
Symbolic link
@ -0,0 +1 @@
|
||||
../../../mongoose.c
|
1
tutorials/mqtt/mqtt-client-aws-iot/mongoose.h
Symbolic link
1
tutorials/mqtt/mqtt-client-aws-iot/mongoose.h
Symbolic link
@ -0,0 +1 @@
|
||||
../../../mongoose.h
|
1
tutorials/mqtt/mqtt-client-aws-iot/packed_fs.c
Symbolic link
1
tutorials/mqtt/mqtt-client-aws-iot/packed_fs.c
Symbolic link
@ -0,0 +1 @@
|
||||
../../http/http-client/packed_fs.c
|
1
tutorials/mqtt/mqtt-client/README.md
Normal file
1
tutorials/mqtt/mqtt-client/README.md
Normal file
@ -0,0 +1 @@
|
||||
See detailed tutorial at https://mongoose.ws/tutorials/mqtt/mqtt-client/
|
1
tutorials/mqtt/mqtt-client/mongoose.c
Symbolic link
1
tutorials/mqtt/mqtt-client/mongoose.c
Symbolic link
@ -0,0 +1 @@
|
||||
../../../mongoose.c
|
1
tutorials/mqtt/mqtt-client/mongoose.h
Symbolic link
1
tutorials/mqtt/mqtt-client/mongoose.h
Symbolic link
@ -0,0 +1 @@
|
||||
../../../mongoose.h
|
1
tutorials/mqtt/mqtt-client/packed_fs.c
Symbolic link
1
tutorials/mqtt/mqtt-client/packed_fs.c
Symbolic link
@ -0,0 +1 @@
|
||||
../../http/http-client/packed_fs.c
|
1
tutorials/mqtt/mqtt-over-ws-client/README.md
Normal file
1
tutorials/mqtt/mqtt-over-ws-client/README.md
Normal file
@ -0,0 +1 @@
|
||||
See detailed tutorial at https://mongoose.ws/tutorials/mqtt/mqtt-over-ws-client/
|
1
tutorials/mqtt/mqtt-over-ws-client/mongoose.c
Symbolic link
1
tutorials/mqtt/mqtt-over-ws-client/mongoose.c
Symbolic link
@ -0,0 +1 @@
|
||||
../../../mongoose.c
|
1
tutorials/mqtt/mqtt-over-ws-client/mongoose.h
Symbolic link
1
tutorials/mqtt/mqtt-over-ws-client/mongoose.h
Symbolic link
@ -0,0 +1 @@
|
||||
../../../mongoose.h
|
1
tutorials/mqtt/mqtt-over-ws-client/packed_fs.c
Symbolic link
1
tutorials/mqtt/mqtt-over-ws-client/packed_fs.c
Symbolic link
@ -0,0 +1 @@
|
||||
../../http/http-client/packed_fs.c
|
1
tutorials/mqtt/mqtt-server/README.md
Normal file
1
tutorials/mqtt/mqtt-server/README.md
Normal file
@ -0,0 +1 @@
|
||||
See detailed tutorial at https://mongoose.ws/tutorials/mqtt/mqtt-server/
|
1
tutorials/mqtt/mqtt-server/mongoose.c
Symbolic link
1
tutorials/mqtt/mqtt-server/mongoose.c
Symbolic link
@ -0,0 +1 @@
|
||||
../../../mongoose.c
|
1
tutorials/mqtt/mqtt-server/mongoose.h
Symbolic link
1
tutorials/mqtt/mqtt-server/mongoose.h
Symbolic link
@ -0,0 +1 @@
|
||||
../../../mongoose.h
|
@ -1,2 +1,2 @@
|
||||
- This example requires changing server name and user credentials on `main.c`
|
||||
- This example requires building with TLS support; before running, see detailed tutorial at https://mongoose.ws/tutorials/smtp-client/
|
||||
- This example requires changing server name and user credentials in `main.c`
|
||||
- This example requires building with TLS support; before running, please see its detailed tutorial at https://mongoose.ws/tutorials/smtp/smtp-client/
|
1
tutorials/smtp/smtp-client/mongoose.c
Symbolic link
1
tutorials/smtp/smtp-client/mongoose.c
Symbolic link
@ -0,0 +1 @@
|
||||
../../../mongoose.c
|
1
tutorials/smtp/smtp-client/mongoose.h
Symbolic link
1
tutorials/smtp/smtp-client/mongoose.h
Symbolic link
@ -0,0 +1 @@
|
||||
../../../mongoose.h
|
1
tutorials/smtp/smtp-client/packed_fs.c
Symbolic link
1
tutorials/smtp/smtp-client/packed_fs.c
Symbolic link
@ -0,0 +1 @@
|
||||
../../http/http-client/packed_fs.c
|
Loading…
Reference in New Issue
Block a user