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
e9e44c6b
Commit
e9e44c6b
authored
May 19, 2013
by
Martin Hurton
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #558 from hintjens/master
stdint.h isn't available on all platforms
parents
5d2a8b18
31ee92f2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
10 deletions
+24
-10
zmq_curve.txt
doc/zmq_curve.txt
+1
-1
zmq.h
include/zmq.h
+15
-1
mechanism.hpp
src/mechanism.hpp
+1
-2
plain_mechanism.cpp
src/plain_mechanism.cpp
+7
-6
No files found.
doc/zmq_curve.txt
View file @
e9e44c6b
...
...
@@ -23,7 +23,7 @@ options. Which peer binds, and which connects, is not relevant.
NOTE: this isn't implemented and not fully defined. The server keypair
needs to be persistent, and it would be sensible to define a format for
this
in CurveZMQ
this
as a CurveZMQ RFC.
SEE ALSO
...
...
include/zmq.h
View file @
e9e44c6b
...
...
@@ -27,7 +27,6 @@ extern "C" {
#if !defined _WIN32_WCE
#include <errno.h>
#endif
#include <stdint.h>
#include <stddef.h>
#include <stdio.h>
#if defined _WIN32
...
...
@@ -53,6 +52,21 @@ extern "C" {
# endif
#endif
/* Define integer types needed for event interface */
#if defined ZMQ_HAVE_SOLARIS || defined ZMQ_HAVE_OPENVMS
# include <inttypes.h>
#elif defined _MSC_VER && _MSC_VER < 1600
# ifndef int32_t
typedef
__int32
int32_t
;
# endif
# ifndef uint16_t
typedef
unsigned
__int16
uint16_t
;
# endif
#else
# include <stdint.h>
#endif
/******************************************************************************/
/* 0MQ versioning support. */
/******************************************************************************/
...
...
src/mechanism.hpp
View file @
e9e44c6b
...
...
@@ -20,8 +20,7 @@
#ifndef __ZMQ_MECHANISM_HPP_INCLUDED__
#define __ZMQ_MECHANISM_HPP_INCLUDED__
#include <stdint.h>
#include "stdint.hpp"
#include "options.hpp"
#include "blob.hpp"
...
...
src/plain_mechanism.cpp
View file @
e9e44c6b
...
...
@@ -125,19 +125,20 @@ int zmq::plain_mechanism_t::hello_command (msg_t *msg_) const
const
std
::
string
password
=
options
.
plain_password
;
zmq_assert
(
password
.
length
()
<
256
);
const
size_t
command_size
=
8
+
1
+
username
.
length
()
+
1
+
password
.
length
();
const
size_t
command_size
=
8
+
1
+
username
.
length
()
+
1
+
password
.
length
();
const
int
rc
=
msg_
->
init_size
(
command_size
);
errno_assert
(
rc
==
0
);
unsigned
char
*
ptr
=
static_cast
<
unsigned
char
*>
(
msg_
->
data
());
unsigned
char
*
ptr
=
static_cast
<
unsigned
char
*>
(
msg_
->
data
());
memcpy
(
ptr
,
"HELLO "
,
8
);
ptr
+=
8
;
*
ptr
++
=
static_cast
<
unsigned
char
>
(
username
.
length
());
memcpy
(
ptr
,
username
.
c_str
(),
username
.
length
());
ptr
+=
username
.
length
();
*
ptr
++
=
static_cast
<
unsigned
char
>
(
password
.
length
());
memcpy
(
ptr
,
password
.
c_str
(),
password
.
length
());
ptr
+=
password
.
length
();
...
...
@@ -155,7 +156,6 @@ int zmq::plain_mechanism_t::process_hello_command (msg_t *msg_)
errno
=
EPROTO
;
return
-
1
;
}
ptr
+=
8
;
bytes_left
-=
8
;
...
...
@@ -194,7 +194,8 @@ int zmq::plain_mechanism_t::process_hello_command (msg_t *msg_)
return
-
1
;
}
// TODO: Add user authentication
// TODO: Add user authentication
// Note: maybe use RFC 27 (ZAP) for this
return
0
;
}
...
...
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