From 101807d69e3282a7edd8b87bd04fc4c8f66a2234 Mon Sep 17 00:00:00 2001 From: yerden Date: Fri, 8 Sep 2017 00:27:47 +0600 Subject: [PATCH] zmq: fix typo in SendTimeout method --- Include/Zmq/SocketOptions.mqh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/Zmq/SocketOptions.mqh b/Include/Zmq/SocketOptions.mqh index b5e90fd..384ae23 100644 --- a/Include/Zmq/SocketOptions.mqh +++ b/Include/Zmq/SocketOptions.mqh @@ -251,7 +251,7 @@ public: SOCKOPT(int,ReceiveTimeout,ZMQ_RCVTIMEO) // milliseconds SOCKOPT(int,SendBuffer,ZMQ_SNDBUF) // bytes SOCKOPT(int,SendHighWaterMark,ZMQ_SNDHWM) // messages - SOCKOPT(int,SendTimout,ZMQ_SNDTIMEO) + SOCKOPT(int,SendTimeout,ZMQ_SNDTIMEO) SOCKOPT_GET_BOOL(ReceiveMore,ZMQ_RCVMORE)