Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
adf7a7ad
Commit
adf7a7ad
authored
May 22, 2012
by
Lourens Naudé
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into monitor-regressions
parents
991b7fcc
20152a6e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
6 deletions
+7
-6
zmq.txt
doc/zmq.txt
+3
-3
zmq_ctx_new.txt
doc/zmq_ctx_new.txt
+1
-1
zmq_pgm.txt
doc/zmq_pgm.txt
+2
-1
socket_base.cpp
src/socket_base.cpp
+1
-1
No files found.
doc/zmq.txt
View file @
adf7a7ad
...
...
@@ -19,7 +19,7 @@ DESCRIPTION
The 0MQ lightweight messaging kernel is a library which extends the standard
socket interfaces with features traditionally provided by specialised
_messaging middleware_ products. 0MQ sockets provide an abstraction of
asynchronous
_message queues_, multiple _messaging patterns_, message
asynchronous _message queues_, multiple _messaging patterns_, message
filtering (_subscriptions_), seamless access to multiple _transport protocols_
and more.
...
...
@@ -211,8 +211,8 @@ by C programmers. The intent is that programmers using 0MQ from other languages
shall refer to this documentation alongside any documentation provided by the
vendor of their language binding.
Language bindings (
Python, PHP, Ruby, Java and more) are provided by members
of the 0MQ community and pointers can be found on the 0MQ website.
Language bindings (
$$C++$$, Python, PHP, Ruby, Java and more) are provided by
members
of the 0MQ community and pointers can be found on the 0MQ website.
AUTHORS
...
...
doc/zmq_ctx_new.txt
View file @
adf7a7ad
...
...
@@ -39,7 +39,7 @@ No error values are defined for this function.
SEE ALSO
--------
linkzmq:zmq[7]
linkzmq:zmq_ctx_
pu
t[3]
linkzmq:zmq_ctx_
se
t[3]
linkzmq:zmq_ctx_get[3]
linkzmq:zmq_ctx_destroy[3]
...
...
doc/zmq_pgm.txt
View file @
adf7a7ad
...
...
@@ -60,7 +60,8 @@ An 'interface' may be specified by either of the following:
NOTE: Interface names are not standardised in any way and should be assumed to
be arbitrary and platform dependent. On Win32 platforms no short interface
names exist, thus only the primary IPv4 address may be used to specify an
'interface'.
'interface'. The 'interface' part can be omitted, in that case the default one
will be selected.
A 'multicast address' is specified by an IPv4 multicast address in it's numeric
representation.
...
...
src/socket_base.cpp
View file @
adf7a7ad
...
...
@@ -547,7 +547,7 @@ void zmq::socket_base_t::add_endpoint (const char *addr_, own_t *endpoint_)
{
// Activate the session. Make it a child of this socket.
launch_child
(
endpoint_
);
endpoints
.
insert
(
std
::
make_pair
(
std
::
string
(
addr_
),
endpoint_
));
endpoints
.
insert
(
endpoints_t
::
value_type
(
std
::
string
(
addr_
),
endpoint_
));
}
int
zmq
::
socket_base_t
::
term_endpoint
(
const
char
*
addr_
)
...
...
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