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
56c36927
Commit
56c36927
authored
Jan 14, 2010
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:sustrik/zeromq2
parents
b9b0124d
b60342ae
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
31 additions
and
8 deletions
+31
-8
zmq_bind.3
man/man3/zmq_bind.3
+8
-4
zmq_connect.3
man/man3/zmq_connect.3
+8
-4
zmq_pgm.7
man/man7/zmq_pgm.7
+5
-0
zmq_tcp.7
man/man7/zmq_tcp.7
+5
-0
zmq_udp.7
man/man7/zmq_udp.7
+5
-0
No files found.
man/man3/zmq_bind.3
View file @
56c36927
...
...
@@ -5,16 +5,20 @@ zmq_bind \- binds the socket to the specified address
.B int zmq_bind (void *s, const char *addr);
.SH DESCRIPTION
The function binds socket
.IR s to a particular transport. Actual semantics of the
.IR s
to a particular transport. Actual semantics of the
command depend on the underlying transport mechanism, however, in cases where
peers connect in an asymetric manner,
.IR zmq_bind
should be called first,
.IR zmq_connect
afterwards.
For a
ctual formats of
afterwards.
A
ctual formats of
.IR addr
parameter for different types of transport have a look at
.IR zmq(7) .
parameter are defined by individual transports. For a list of supported
transports have a look at
.IR zmq(7)
manual page.
Note that single socket can be bound (and connected) to
arbitrary number of peers using different transport mechanisms.
.SH RETURN VALUE
...
...
man/man3/zmq_connect.3
View file @
56c36927
...
...
@@ -5,17 +5,21 @@ zmq_connect \- connect the socket to the specified peer
.B int zmq_connect (void *s, const char *addr);
.SH DESCRIPTION
The function connect socket
.IR s to the peer identified by
.IR s
to the peer identified by
.IR addr .
Actual semantics of the command depend on the underlying transport mechanism,
however, in cases where peers connect in an asymetric manner,
.IR zmq_bind
should be called first,
.IR zmq_connect
afterwards. For
actual formats of
afterwards. For
mats of the
.IR addr
parameter for different types of transport have a look at
.IR zmq(7) .
parameter are defined by individual transports. For a list of supported
transports have a look at
.IR zmq(7)
manual page.
Note that single socket can be connected (and bound) to
arbitrary number of peers using different transport mechanisms.
.SH RETURN VALUE
...
...
man/man7/zmq_pgm.7
View file @
56c36927
...
...
@@ -32,6 +32,11 @@ mutlicast group should be specified in the numeric representation. For example:
pgm://192.168.0.111:224.0.0.1:5555
.fi
Note that NIC names are not standardised by POSIX. They tend to be rather
arbitrary and platform dependent. Say, "eth0" on Linux would correspond to "en0"
on OSX and "e1000g" on Solaris. On Windows platform, as there are no short NIC
names available, you have to use numeric IP addresses instead.
.SH WIRE FORMAT
Consecutive PGM packets are interpreted as a single continuous stream of data.
...
...
man/man7/zmq_tcp.7
View file @
56c36927
...
...
@@ -18,6 +18,11 @@ a NIC name or a hostname (resolved by DNS):
tcp://lo:32768
.fi
Note that NIC names are not standardised by POSIX. They tend to be rather
arbitrary and platform dependent. Say, "eth0" on Linux would correspond to "en0"
on OSX and "e1000g" on Solaris. On Windows platform, as there are no short NIC
names available, you have to use numeric IP addresses instead.
.SH WIRE FORMAT
A message consists of a message length followed by message data.
...
...
man/man7/zmq_udp.7
View file @
56c36927
...
...
@@ -24,6 +24,11 @@ mutlicast group should be specified in the numeric representation. For example:
udp://192.168.0.111:224.0.0.1:5555
.fi
Note that NIC names are not standardised by POSIX. They tend to be rather
arbitrary and platform dependent. Say, "eth0" on Linux would correspond to "en0"
on OSX and "e1000g" on Solaris. On Windows platform, as there are no short NIC
names available, you have to use numeric IP addresses instead.
.SH WIRE FORMAT
Same as with PGM transport except for UDP packet headers.
...
...
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