mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-15 01:24:17 +08:00
2c83a50a8a
PUBLISHED_FROM=5dc567f8978d5414835f7a2338a78ae9eb683f55
30 lines
1.3 KiB
Markdown
30 lines
1.3 KiB
Markdown
---
|
|
title: Design Concept
|
|
items:
|
|
- { type: file, name: memory-buffers.md }
|
|
- { type: file, name: event-handler.md }
|
|
- { type: file, name: events.md }
|
|
- { type: file, name: conn-flags.md }
|
|
---
|
|
|
|
Mongoose is a multi-protocol networking library that implements non-blocking,
|
|
asyncronous IO and provides event-based APIs. It has three basic data
|
|
structures:
|
|
|
|
- `struct mg_mgr` is an event manager that holds all active connections
|
|
- `struct mg_connection` describes a connection
|
|
- `struct mbuf` describes data buffer (received or sent data)
|
|
|
|
Connections could be either *listening*, *outbound* or *inbound*. Outbound
|
|
connections are created by the `mg_connect()` call. Listening connections are
|
|
created by the `mg_bind()` call. Inbound connections are those accepted by a
|
|
listening connection. Each connection is described by the `struct mg_connection`
|
|
structure, which has a number of fields like socket, event handler function,
|
|
send/receive buffer, flags, etc.
|
|
|
|
Mongoose's usage pattern is to declare and initialise event manager, create
|
|
connections and create an event loop by calling `mg_mgr_poll()` in a loop.
|
|
`mg_mgr_poll()` iterates over all sockets, accepts new connections, sends and
|
|
receives data, closes connections and calls event handler functions for the
|
|
respective events.
|