Commit e81f8373 authored by Sergey Lyubka's avatar Sergey Lyubka Committed by Cesanta Bot

Update mongoose docs

PUBLISHED_FROM=cfd0018a5824c5ccac532558be86c17cda64ce50
parent dfa83f2c
...@@ -15,7 +15,7 @@ Looking for a complete IoT firmware solution? ...@@ -15,7 +15,7 @@ Looking for a complete IoT firmware solution?
Check out [Mongoose OS](https://mongoose-iot.com) - open source embedded operating system for low-power connected microcontrollers. Secure, designed for Internet of Things, complete environment for prototyping, development and managing. Check out [Mongoose OS](https://mongoose-iot.com) - open source embedded operating system for low-power connected microcontrollers. Secure, designed for Internet of Things, complete environment for prototyping, development and managing.
# Support # Support
- [Study mongoose example code](https://github.com/cesanta/mongoose/tree/master/examples) - [Study mongoose example code](https://github.com/cesanta/mongoose-examples)
- [Read User Guide and API reference](https://docs.cesanta.com/mongoose) - [Read User Guide and API reference](https://docs.cesanta.com/mongoose)
- [Support Forum - ask your technical questions here] (http://forum.cesanta.com/index.php?p=/categories/mongoose) - [Support Forum - ask your technical questions here] (http://forum.cesanta.com/index.php?p=/categories/mongoose)
- [Commercial licensing and support available] (https://www.cesanta.com/services-support) - [Commercial licensing and support available] (https://www.cesanta.com/services-support)
......
...@@ -2,4 +2,6 @@ ...@@ -2,4 +2,6 @@
title: DNS client example title: DNS client example
--- ---
TBD See https://github.com/cesanta/mongoose/blob/master/mongoose.c and search
for the `mg_resolve_async_eh()` function - that is the core of
built-in Mongoose async DNS resolver.
...@@ -2,4 +2,8 @@ ...@@ -2,4 +2,8 @@
title: Overview title: Overview
--- ---
TBD Mongoose uses non-blocking DNS resolver. For each name to be resolved,
it first checks the `/etc/hosts` file (or, `hosts` on Windows).
If the entry is not found there, then the `8.8.8.8` DNS server is queried.
When IP address is found, Mongoose proceeds with making the connection
with the resolved IP address.
...@@ -2,4 +2,15 @@ ...@@ -2,4 +2,15 @@
title: Digest Authentication title: Digest Authentication
--- ---
TBD Mongoose has a built-in Digest (MD5) authentication support. In order to
enable Digest authentication, create a file `.htpasswd` in the directory
you would like to protect. That file should be in the format that Apache's
`htdigest` utility.
You can use either Apache `htdigest` utility, or
Mongoose pre-build binary (https://www.cesanta.com/products/binary)
to add new users into that file:
```
mongoose -A /path/to/.htdigest mydomain.com joe joes_password
```
...@@ -2,4 +2,4 @@ ...@@ -2,4 +2,4 @@
title: MQTT client example title: MQTT client example
--- ---
TBD See https://github.com/cesanta/mongoose-examples/tree/master/examples/mqtt_client
...@@ -2,4 +2,4 @@ ...@@ -2,4 +2,4 @@
title: MQTT server example title: MQTT server example
--- ---
TBD See https://github.com/cesanta/mongoose-examples/tree/master/examples/mqtt_broker
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment