diff options
Diffstat (limited to 'src/dabInputZmq.h')
-rw-r--r-- | src/dabInputZmq.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/dabInputZmq.h b/src/dabInputZmq.h index a052815..f41defa 100644 --- a/src/dabInputZmq.h +++ b/src/dabInputZmq.h @@ -3,7 +3,7 @@ Research Center Canada) Copyright (C) 2013, 2014 Matthias P. Braendli - http://mpb.li + http://www.opendigitalradio.org ZeroMQ input. see www.zeromq.org for more info @@ -11,6 +11,8 @@ For the MPEG input, each zeromq message must contain one frame. + Encryption is provided by zmq_curve, see the corresponding manpage. + From the ZeroMQ manpage 'zmq': The 0MQ lightweight messaging kernel is a library which extends the standard @@ -94,11 +96,11 @@ class DabInputZmqBase : public DabInputBase, public RemoteControllable { virtual int close(); /* Remote control */ - virtual void set_parameter(const string& parameter, - const string& value); + virtual void set_parameter(const std::string& parameter, + const std::string& value); /* Getting a parameter always returns a string. */ - virtual const string get_parameter(const string& parameter) const; + virtual const std::string get_parameter(const std::string& parameter) const; protected: virtual int readFromSocket(size_t framesize) = 0; |