mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-28 13:49:01 +08:00
2c83a50a8a
PUBLISHED_FROM=5dc567f8978d5414835f7a2338a78ae9eb683f55
29 lines
1.1 KiB
Markdown
29 lines
1.1 KiB
Markdown
---
|
|
title: Overview
|
|
---
|
|
|
|
Mongoose is a swiss army knife for embedded network programming.
|
|
It implements event-driven non-blocking APIs for TCP, UDP, HTTP,
|
|
WebSocket, CoAP, MQTT for client and server mode.
|
|
Features include:
|
|
|
|
- Cross-platform: works on Linux/UNIX, MacOS, QNX, eCos, Windows, Android,
|
|
iPhone, FreeRTOS (TI CC3200, ESP8266) and more
|
|
- Single-threaded, asynchronous, non-blocking core with simple event-based API
|
|
- Native support for [PicoTCP embedded TCP/IP stack](http://www.picotcp.com),
|
|
[LWIP embedded TCP/IP stack](https://en.wikipedia.org/wiki/LwIP)
|
|
- Built-in protocols:
|
|
- plain TCP, plain UDP, SSL/TLS (over TCP, one-way or two-way)
|
|
- HTTP client and server
|
|
- WebSocket client and server
|
|
- MQTT client and server
|
|
- CoAP client and server
|
|
- DNS client and server
|
|
- asynchronous DNS resolver
|
|
- Tiny static and run-time footprint
|
|
- Source code is both ISO C and ISO C++ compliant
|
|
- Very easy to integrate: just copy
|
|
[mongoose.c](https://raw.githubusercontent.com/cesanta/mongoose/master/mongoose.c) and
|
|
[mongoose.h](https://raw.githubusercontent.com/cesanta/mongoose/master/mongoose.h)
|
|
files to your build tree
|