diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-09-30 12:22:22 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-09-30 12:22:22 +0200 |
commit | 72374f4ba67a8330d197bc3c91dc6a44fa16a69c (patch) | |
tree | e3881e588cd5b8d4af1ba32afb0b80f61225bb75 /src/MuxElements.h | |
parent | 2e3d29936f70c3c8183a4e2dcb0f967b73de2ec0 (diff) | |
download | dabmux-72374f4ba67a8330d197bc3c91dc6a44fa16a69c.tar.gz dabmux-72374f4ba67a8330d197bc3c91dc6a44fa16a69c.tar.bz2 dabmux-72374f4ba67a8330d197bc3c91dc6a44fa16a69c.zip |
Print linking info on startup
Diffstat (limited to 'src/MuxElements.h')
-rw-r--r-- | src/MuxElements.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/MuxElements.h b/src/MuxElements.h index 93c291f..8285e61 100644 --- a/src/MuxElements.h +++ b/src/MuxElements.h @@ -439,23 +439,22 @@ struct ServiceLink { class LinkageSet : public RemoteControllable { public: LinkageSet(std::string name, uint16_t lsn, bool hard, bool international); - void set_active(bool active); std::list<ServiceLink> id_list; - private: /* Linkage Set Number is a 12-bit number that identifies the linkage * set in a country (requires coordination between multiplex operators * in a country) */ - uint16_t m_lsn; + uint16_t lsn; - bool m_active; // Remote-controllable - bool m_hard; - bool m_international; + bool active; // Remote-controllable + bool hard; + bool international; - DabService *m_keyservice; + std::string keyservice; + private: /* Remote control */ virtual void set_parameter(const std::string& parameter, const std::string& value); |