Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
mongoose
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ganil-acq
GANILinux
linux-service
library
mongoose
Commits
db6e883c
"source/Model/XS/XSM_SFR.cxx" did not exist on "12d7566ff2904da5ef38362014f08c1a9268dbdc"
Commit
db6e883c
authored
10 years ago
by
Sergey Lyubka
Browse files
Options
Downloads
Patches
Plain Diff
Added mg_wakeup_server_ex(), removed mg_wakeup_server() and mg_iterate_over_connections()
parent
804da054
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docs/API.md
+8
-17
8 additions, 17 deletions
docs/API.md
with
8 additions
and
17 deletions
docs/API.md
+
8
−
17
View file @
db6e883c
...
@@ -136,23 +136,14 @@ given parameter name is not valid, NULL is returned. For valid names, return
...
@@ -136,23 +136,14 @@ given parameter name is not valid, NULL is returned. For valid names, return
value is guaranteed to be non-NULL. If parameter is not set, zero-length string
value is guaranteed to be non-NULL. If parameter is not set, zero-length string
is returned.
is returned.
void mg_wakeup_server_ex(struct mg_server *, mg_handler_t func,
void mg_iterate_over_connections(struct mg_server *, mg_handler_t func);
const char *fmt, ...);
This is an interface primarily designed to push arbitrary data to websocket
Sends string message to a server. Function
`func`
is called for every active
connections at any time. This function could be called from the Mongoose thread
connection. String message is passed in
`struct mg_connection::callback_param`
.
only. When it returns, Mongoose thread calls
`func()`
for each active
This function is designed to push data to the connected clients, and
connection.
can be called from any thread. There is a limitation on the length of
It is allowed to call
`mg_send_data()`
or
`mg_websocket_write()`
within a
the message, currently at 8 kilobytes.
callback, cause
`func`
is executed in the context of the Mongoose thread.
void mg_wakeup_server(struct mg_server *);
Makes
`mg_poll_server()`
that could be sleeping in the
`select()`
syscall
to break the call and return. This function can be called from any thread.
It is designed to let other threads wake up Mongoose thread from the sleep
and let it do a fresh new IO iteration over all connection. Usually it is done
when other threads decides there is new data ready to be sent by Mongoose.
void mg_send_status(struct mg_connection *, int status_code);
void mg_send_status(struct mg_connection *, int status_code);
void mg_send_header(struct mg_connection *, const char *name,
void mg_send_header(struct mg_connection *, const char *name,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment