mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-24 02:59:01 +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)
|
||||
|
||||
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
|
||||
- [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
|
||||
- [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)
|
||||
- [Commercial licensing and support available](https://www.cesanta.com/licensing.html)
|
||||
- [Check our latest releases](https://github.com/cesanta/mongoose/releases)
|
||||
|
@ -1,8 +1,11 @@
|
||||
# User Guide
|
||||
|
||||
|
||||
## 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
|
||||
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
|
||||
@ -285,7 +288,7 @@ int main(int argc, char *argv[]) {
|
||||
### struct mg_mgr
|
||||
|
||||
```c
|
||||
struct mg\_mgr {
|
||||
struct mg_mgr {
|
||||
struct mg_connection *conns; // List of active connections
|
||||
struct mg_connection *dnsc; // DNS resolver connection
|
||||
const char *dnsserver; // DNS server URL
|
||||
|
Loading…
Reference in New Issue
Block a user