diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2024-02-21 16:32:45 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2024-02-21 16:32:45 +0100 |
commit | 12f38eb6c66ea34fd062fb3b639f3359a55284fb (patch) | |
tree | 73f83cc00be4b4bac3879472126db0447e0f8996 /src/ConfigParser.cpp | |
parent | 78b4f04de2975da7b6240983fe1c6a496289a067 (diff) | |
download | dabmux-12f38eb6c66ea34fd062fb3b639f3359a55284fb.tar.gz dabmux-12f38eb6c66ea34fd062fb3b639f3359a55284fb.tar.bz2 dabmux-12f38eb6c66ea34fd062fb3b639f3359a55284fb.zip |
Add uatype journaline to config
Diffstat (limited to 'src/ConfigParser.cpp')
-rw-r--r-- | src/ConfigParser.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ConfigParser.cpp b/src/ConfigParser.cpp index a845bef..74e627b 100644 --- a/src/ConfigParser.cpp +++ b/src/ConfigParser.cpp @@ -833,6 +833,10 @@ void parse_ptree( ua.uaType = FIG0_13_APPTYPE_WEBSITE; ua.xpadAppType = 12; } + else if (ua_value == "journaline") { + ua.uaType = FIG0_13_APPTYPE_JOURNALINE; + ua.xpadAppType = 12; + } if (component->isPacketComponent(ensemble->subchannels)) { component->packet.uaTypes.push_back(ua); |