diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-04-17 20:19:56 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-04-17 20:19:56 +0200 |
commit | 5f9e7bc673025ffdc953d254be0d0c65c70ee908 (patch) | |
tree | 05c023814851e2135e22a98c676115d67334f664 /src/dabInputZmq.cpp | |
parent | dd428769ba5587e913cb2d768e2bca4b70f98c5d (diff) | |
download | dabmux-5f9e7bc673025ffdc953d254be0d0c65c70ee908.tar.gz dabmux-5f9e7bc673025ffdc953d254be0d0c65c70ee908.tar.bz2 dabmux-5f9e7bc673025ffdc953d254be0d0c65c70ee908.zip |
Remove using directives from .h files
Diffstat (limited to 'src/dabInputZmq.cpp')
-rw-r--r-- | src/dabInputZmq.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/dabInputZmq.cpp b/src/dabInputZmq.cpp index 1106fee..368d646 100644 --- a/src/dabInputZmq.cpp +++ b/src/dabInputZmq.cpp @@ -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 @@ -61,6 +63,8 @@ # define bzero(s, n) memset(s, 0, n) #endif +using namespace std; + extern StatsServer* global_stats; /***** Common functions (MPEG and AAC) ******/ |