mirror of
https://github.com/zeromq/libzmq.git
synced 2025-01-01 19:05:18 +08:00
Merge pull request #2673 from jakecobb/curve_testing
CURVE throughput performance testing
This commit is contained in:
commit
347f143a5c
@ -31,6 +31,12 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
// keys are arbitrary but must match remote_lat.cpp
|
||||
const char server_pubkey[] = "DX4nh=yUn{-9ugra0X3Src4SU-4xTgqxcYY.+<SH";
|
||||
const char server_prvkey[] = "{X}#>t#jRGaQ}gMhv=30r(Mw+87YGs+5%kh=i@f8";
|
||||
const char client_pubkey[] = "<n^oA}I:66W+*ds3tAmi1+KJzv-}k&fC2aA5Bj0K";
|
||||
const char client_prvkey[] = "9R9bV}[6z6DC-%$!jTVTKvWc=LEL{4i4gzUe$@Zx";
|
||||
|
||||
int main (int argc, char *argv [])
|
||||
{
|
||||
const char *bind_to;
|
||||
@ -43,16 +49,20 @@ int main (int argc, char *argv [])
|
||||
zmq_msg_t msg;
|
||||
void *watch;
|
||||
unsigned long elapsed;
|
||||
unsigned long throughput;
|
||||
double throughput;
|
||||
double megabits;
|
||||
int curve = 0;
|
||||
|
||||
if (argc != 4) {
|
||||
printf ("usage: local_thr <bind-to> <message-size> <message-count>\n");
|
||||
if (argc != 4 && argc != 5) {
|
||||
printf ("usage: local_thr <bind-to> <message-size> <message-count> [<enable_curve>]\n");
|
||||
return 1;
|
||||
}
|
||||
bind_to = argv [1];
|
||||
message_size = atoi (argv [2]);
|
||||
message_count = atoi (argv [3]);
|
||||
if (argc >= 5 && atoi (argv [4])) {
|
||||
curve = 1;
|
||||
}
|
||||
|
||||
ctx = zmq_init (1);
|
||||
if (!ctx) {
|
||||
@ -68,6 +78,19 @@ int main (int argc, char *argv [])
|
||||
|
||||
// Add your socket options here.
|
||||
// For example ZMQ_RATE, ZMQ_RECOVERY_IVL and ZMQ_MCAST_LOOP for PGM.
|
||||
if (curve) {
|
||||
rc = zmq_setsockopt (s, ZMQ_CURVE_SECRETKEY, server_prvkey, sizeof(server_prvkey));
|
||||
if (rc != 0) {
|
||||
printf ("error in zmq_setsockoopt: %s\n", zmq_strerror (errno));
|
||||
return -1;
|
||||
}
|
||||
int server = 1;
|
||||
rc = zmq_setsockopt (s, ZMQ_CURVE_SERVER, &server, sizeof(int));
|
||||
if (rc != 0) {
|
||||
printf ("error in zmq_setsockoopt: %s\n", zmq_strerror (errno));
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
rc = zmq_bind (s, bind_to);
|
||||
if (rc != 0) {
|
||||
@ -115,7 +138,7 @@ int main (int argc, char *argv [])
|
||||
return -1;
|
||||
}
|
||||
|
||||
throughput = (unsigned long)
|
||||
throughput =
|
||||
((double) message_count / (double) elapsed * 1000000);
|
||||
megabits = ((double) throughput * message_size * 8) / 1000000;
|
||||
|
||||
|
@ -32,6 +32,12 @@
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
// keys are arbitrary but must match local_lat.cpp
|
||||
const char server_pubkey[] = "DX4nh=yUn{-9ugra0X3Src4SU-4xTgqxcYY.+<SH";
|
||||
const char server_prvkey[] = "{X}#>t#jRGaQ}gMhv=30r(Mw+87YGs+5%kh=i@f8";
|
||||
const char client_pubkey[] = "<n^oA}I:66W+*ds3tAmi1+KJzv-}k&fC2aA5Bj0K";
|
||||
const char client_prvkey[] = "9R9bV}[6z6DC-%$!jTVTKvWc=LEL{4i4gzUe$@Zx";
|
||||
|
||||
int main (int argc, char *argv [])
|
||||
{
|
||||
const char *connect_to;
|
||||
@ -42,15 +48,19 @@ int main (int argc, char *argv [])
|
||||
int rc;
|
||||
int i;
|
||||
zmq_msg_t msg;
|
||||
int curve = 0;
|
||||
|
||||
if (argc != 4) {
|
||||
if (argc != 4 && argc != 5) {
|
||||
printf ("usage: remote_thr <connect-to> <message-size> "
|
||||
"<message-count>\n");
|
||||
"<message-count> [<enable_curve>]\n");
|
||||
return 1;
|
||||
}
|
||||
connect_to = argv [1];
|
||||
message_size = atoi (argv [2]);
|
||||
message_count = atoi (argv [3]);
|
||||
if (argc >= 5 && atoi (argv [4])) {
|
||||
curve = 1;
|
||||
}
|
||||
|
||||
ctx = zmq_init (1);
|
||||
if (!ctx) {
|
||||
@ -66,6 +76,25 @@ int main (int argc, char *argv [])
|
||||
|
||||
// Add your socket options here.
|
||||
// For example ZMQ_RATE, ZMQ_RECOVERY_IVL and ZMQ_MCAST_LOOP for PGM.
|
||||
if (curve) {
|
||||
rc = zmq_setsockopt (s, ZMQ_CURVE_SECRETKEY, client_prvkey, sizeof (client_prvkey));
|
||||
if (rc != 0) {
|
||||
printf ("error in zmq_setsockoopt: %s\n", zmq_strerror (errno));
|
||||
return -1;
|
||||
}
|
||||
|
||||
rc = zmq_setsockopt (s, ZMQ_CURVE_PUBLICKEY, client_pubkey, sizeof (client_pubkey));
|
||||
if (rc != 0) {
|
||||
printf ("error in zmq_setsockoopt: %s\n", zmq_strerror (errno));
|
||||
return -1;
|
||||
}
|
||||
|
||||
rc = zmq_setsockopt (s, ZMQ_CURVE_SERVERKEY, server_pubkey, sizeof (server_pubkey));
|
||||
if (rc != 0) {
|
||||
printf ("error in zmq_setsockoopt: %s\n", zmq_strerror (errno));
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
rc = zmq_connect (s, connect_to);
|
||||
if (rc != 0) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user