Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable Multi-site mode features. #758

Merged
merged 28 commits into from
Feb 7, 2023
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
0d14436
Pushing changes
tadscottsmith Oct 5, 2022
49d1a31
Added NAC Preference.
tadscottsmith Oct 11, 2022
2ee0010
Reset recorder printout.
tadscottsmith Oct 11, 2022
ab0a02b
Cleanup logging levels.
tadscottsmith Oct 11, 2022
3946165
Start recording before cleanup.
tadscottsmith Oct 11, 2022
4614e17
Ensure recorder started.
tadscottsmith Oct 11, 2022
bd7d717
Original call log changes.
tadscottsmith Oct 11, 2022
81b7fff
Log change.
tadscottsmith Oct 11, 2022
fe9f4b3
Fix coloring.
tadscottsmith Oct 11, 2022
2d709ac
Revert print status update time.
tadscottsmith Oct 11, 2022
59d6fab
Added ability to manually set multiSiteSystemName.
tadscottsmith Nov 22, 2022
e0426f8
Syntax fix.
tadscottsmith Nov 22, 2022
1ba692a
Syntax fix.
tadscottsmith Nov 22, 2022
135d48d
Syntax fix.
tadscottsmith Nov 22, 2022
f40d3b1
Attempt preferredNAC for multiSiteSystemName.
tadscottsmith Nov 22, 2022
88b4289
Syntax fix.
tadscottsmith Nov 22, 2022
08e8fcc
Merge branch 'multi-site-v1' into pre-master
tadscottsmith Dec 21, 2022
1e8d822
Merge pull request #9 from tadscottsmith/pre-master
tadscottsmith Dec 21, 2022
83b12f9
Remove duplicate line from global structs.
tadscottsmith Dec 21, 2022
c990bbe
Cleanup Rdio-Scanner logs.
tadscottsmith Dec 21, 2022
3f4b29f
Merge branch 'robotastic:master' into multi-site-v1
tadscottsmith Dec 29, 2022
9c1718a
Updates based on robotastic/master.
tadscottsmith Dec 29, 2022
c9fc673
Merge branch 'multi-site-v1' of https://github.com/tadscottsmith/trun…
tadscottsmith Dec 29, 2022
3c33c7f
Create state for Ingored TGs.
tadscottsmith Dec 29, 2022
5a86544
Fix digital recorders.
tadscottsmith Dec 29, 2022
47c633b
Closer to master.
tadscottsmith Dec 29, 2022
7396726
Documentation.
tadscottsmith Dec 29, 2022
088ae9f
Merge branch 'master' into pr/758
robotastic Feb 7, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updates based on robotastic/master.
  • Loading branch information
tadscottsmith committed Dec 29, 2022
commit 9c1718aae077f867f68b486750f782c9db30b96b
6 changes: 6 additions & 0 deletions trunk-recorder/main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -620,6 +620,12 @@ bool start_recorder(Call *call, TrunkMessage message, System *sys) {
return false;
}

if (talkgroup) {
call->set_talkgroup_tag(talkgroup->alpha_tag);
} else {
call->set_talkgroup_tag("-");
}

if (call->get_encrypted() == true || (talkgroup && (talkgroup->mode.compare("E") == 0 || talkgroup->mode.compare("TE") == 0 || talkgroup->mode.compare("DE") == 0))) {
call->set_state(MONITORING);
call->set_monitoring_state(ENCRYPTED);
Expand Down