mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-28 07:28:13 +08:00
Update READMEs
This commit is contained in:
parent
94d2e86b60
commit
05a43c563c
@ -20,12 +20,12 @@ on the top 9 things to avoid when embedding a web server.
|
|||||||
- [Download “9 Things NOT to do when embedding a web server” white paper here](https://www.cesanta.com/whitepaper.html)
|
- [Download “9 Things NOT to do when embedding a web server” white paper here](https://www.cesanta.com/whitepaper.html)
|
||||||
|
|
||||||
Looking for a complete IoT solution? Check out
|
Looking for a complete IoT solution? Check out
|
||||||
- [Mongoose OS](https://mongoose-os.com) - open source embedded operating system for low-power connected microcontrollers. Secure, designed for commercial Internet of Things products
|
|
||||||
- [VCON](https://vcon.io) - Arduino compatible MCU modules with built-in firmware OTA updates
|
- [VCON](https://vcon.io) - Arduino compatible MCU modules with built-in firmware OTA updates
|
||||||
|
- [Mongoose OS](https://mongoose-os.com) - open source embedded operating system for low-power connected microcontrollers. Secure, designed for commercial Internet of Things products
|
||||||
|
|
||||||
# Support
|
# Support
|
||||||
- [Study mongoose example code](https://github.com/cesanta/mongoose/tree/master/examples)
|
- [Study mongoose example code](https://github.com/cesanta/mongoose/tree/master/examples)
|
||||||
- [Read User Guide and API reference](https://cesanta.com/docs/overview/intro.html)
|
- [Read User Guide and API reference](https://cesanta.com/docs/)
|
||||||
- [Support Forum - ask your technical questions here](https://forum.cesanta.com/c/mongoose-library/6)
|
- [Support Forum - ask your technical questions here](https://forum.cesanta.com/c/mongoose-library/6)
|
||||||
- [Commercial licensing and support available](https://www.cesanta.com/licensing.html)
|
- [Commercial licensing and support available](https://www.cesanta.com/licensing.html)
|
||||||
- [Check our latest releases](https://github.com/cesanta/mongoose/releases)
|
- [Check our latest releases](https://github.com/cesanta/mongoose/releases)
|
||||||
|
@ -1,8 +1,11 @@
|
|||||||
# User Guide
|
# User Guide
|
||||||
|
|
||||||
|
|
||||||
## Introduction
|
## Introduction
|
||||||
|
|
||||||
Mongoose is a networking library for C/C++. It implements event-driven
|
<img alt="mongoose" src="../images/mongoose.png" class="float-right mx-5" style="width: 140px;" />
|
||||||
|
|
||||||
|
Mongoose is a networking library for C/C++. It implements an event-driven,
|
||||||
non-blocking APIs for TCP, UDP, HTTP, WebSocket, MQTT. It has been designed
|
non-blocking APIs for TCP, UDP, HTTP, WebSocket, MQTT. It has been designed
|
||||||
for connecting devices and bringing them online. On the market since 2004, used
|
for connecting devices and bringing them online. On the market since 2004, used
|
||||||
by vast number of open source and commercial products - it even runs on the
|
by vast number of open source and commercial products - it even runs on the
|
||||||
@ -285,7 +288,7 @@ int main(int argc, char *argv[]) {
|
|||||||
### struct mg_mgr
|
### struct mg_mgr
|
||||||
|
|
||||||
```c
|
```c
|
||||||
struct mg\_mgr {
|
struct mg_mgr {
|
||||||
struct mg_connection *conns; // List of active connections
|
struct mg_connection *conns; // List of active connections
|
||||||
struct mg_connection *dnsc; // DNS resolver connection
|
struct mg_connection *dnsc; // DNS resolver connection
|
||||||
const char *dnsserver; // DNS server URL
|
const char *dnsserver; // DNS server URL
|
||||||
|
Loading…
x
Reference in New Issue
Block a user