From cc3755a16f00026af882ed14d122cc8aa6d50e82 Mon Sep 17 00:00:00 2001 From: Martin Sustrik Date: Mon, 3 Aug 2009 11:30:13 +0200 Subject: renamed from zs to zmq --- src/sub.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/sub.cpp') diff --git a/src/sub.cpp b/src/sub.cpp index 59e838a..3d1d578 100644 --- a/src/sub.cpp +++ b/src/sub.cpp @@ -17,27 +17,27 @@ along with this program. If not, see . */ -#include "../include/zs.h" +#include "../include/zmq.h" #include "sub.hpp" #include "app_thread.hpp" #include "session.hpp" #include "err.hpp" -zs::sub_t::sub_t (app_thread_t *thread_, session_t *session_) : +zmq::sub_t::sub_t (app_thread_t *thread_, session_t *session_) : socket_base_t (thread_, session_) { disable_out (); } -int zs::sub_t::send (struct zs_msg *msg_, int flags_) +int zmq::sub_t::send (struct zmq_msg *msg_, int flags_) { // Subscriber socket has no send function. errno = ENOTSUP; return -1; } -int zs::sub_t::flush () +int zmq::sub_t::flush () { // Subscriber socket has no flush function. errno = ENOTSUP; -- cgit v1.2.3