Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mongoose
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
esp
mongoose
Commits
3054952a
Commit
3054952a
authored
Jul 21, 2016
by
Sergey Lyubka
Committed by
Cesanta Bot
Jul 21, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add %T to the API ref
PUBLISHED_FROM=f6679ea960b3aa0bc9142515548835ee0f78af67
parent
3244df9c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
disabling-flags.md
docs/build-options/disabling-flags.md
+3
-3
intro.md
docs/build-options/intro.md
+3
-3
tunables.md
docs/build-options/tunables.md
+1
-1
No files found.
docs/build-options/disabling-flags.md
View file @
3054952a
...
...
@@ -2,10 +2,10 @@
title
:
Disabling flags
---
-
`MG_DISABLE_HTTP_WEBSOCKET`
disable HTTP + Web
s
ocket protocol support
-
`MG_DISABLE_HTTP_DIGEST_AUTH`
disable HTTP Digest (MD5) authori
z
ation support
-
`MG_DISABLE_HTTP_WEBSOCKET`
disable HTTP + Web
S
ocket protocol support
-
`MG_DISABLE_HTTP_DIGEST_AUTH`
disable HTTP Digest (MD5) authori
s
ation support
-
`MG_DISABLE_MQTT`
disable MQTT support
-
`MG_DISABLE_SHA1`
disable SHA1 support (used by Web
s
ocket)
-
`MG_DISABLE_SHA1`
disable SHA1 support (used by Web
S
ocket)
-
`MG_DISABLE_MD5`
disable MD5 support (used by HTTP auth)
-
`MG_DISABLE_SOCKETPAIR`
disable
`mg_broadcast()`
API
-
`MG_DISABLE_HTTP_KEEP_ALIVE`
useful for embedded systems to save resources
docs/build-options/intro.md
View file @
3054952a
...
...
@@ -9,12 +9,12 @@ items:
Mongoose source code ships in a single .c file that contains functionality
for all supported protocols (modules). Modules can be disabled at compile
time which reduces
executable
size. That can be done by setting preprocessor
time which reduces
the executable's
size. That can be done by setting preprocessor
flags. Also, some preprocessor flags can be used to tune internal Mongoose
parameters.
To set a preprocessor flag during compile time, use
`-D <PREPROCESSOR_FLAG>`
compiler option. For example, to disable both MQTT and C
O
AP,
To set a preprocessor flag during compile time, use
the
`-D <PREPROCESSOR_FLAG>`
compiler option. For example, to disable both MQTT and C
o
AP,
compile the application
`my_app.c`
like this (assumed UNIX system):
```
...
...
docs/build-options/tunables.md
View file @
3054952a
...
...
@@ -2,7 +2,7 @@
title
:
Tunables
---
-
`MG_MALLOC`
,
`MG_CALLOC`
,
`MG_REALLOC`
,
`MG_FREE`
allow
to
use custom
-
`MG_MALLOC`
,
`MG_CALLOC`
,
`MG_REALLOC`
,
`MG_FREE`
allow
you to a
use custom
memory allocator, e.g.
`-DMG_MALLOC=my_malloc`
-
`MG_USE_READ_WRITE`
when set replaces calls to
`recv`
with
`read`
and
`send`
with
`write`
,
thus enabling to add any kind of file descriptor (files, serial devices) to an event manager.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment