Skip to content

Commit

Permalink
Merge pull request #151 from bondagit/daemon-v1.6.6
Browse files Browse the repository at this point in the history
Daemon v1.6.6
  • Loading branch information
bondagit authored Jan 21, 2024
2 parents 67a3b0a + 58496b5 commit ac6cab0
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 10 deletions.
24 changes: 18 additions & 6 deletions daemon/json.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -346,8 +346,12 @@ Config json_to_config_(std::istream& js, Config& config) {
} catch (boost::property_tree::json_parser::json_parser_error& je) {
throw std::runtime_error("error parsing JSON at line " +
std::to_string(je.line()) + " :" + je.message());
} catch (...) {
throw std::runtime_error("failed to convert a number");
} catch (std::invalid_argument& e) {
throw std::runtime_error("error parsing JSON: cannot perform number conversion");
} catch (std::out_of_range& e) {
throw std::runtime_error("error parsing JSON: number conversion out of range");
} catch (std::exception& e) {
throw std::runtime_error("error parsing JSON: " + std::string(e.what()));
}
return config;
}
Expand Down Expand Up @@ -412,8 +416,12 @@ StreamSource json_to_source(const std::string& id, const std::string& json) {
} catch (boost::property_tree::json_parser::json_parser_error& je) {
throw std::runtime_error("error parsing JSON at line " +
std::to_string(je.line()) + " :" + je.message());
} catch (...) {
throw std::runtime_error("failed to convert a number");
} catch (std::invalid_argument& e) {
throw std::runtime_error("error parsing JSON: cannot perform number conversion");
} catch (std::out_of_range& e) {
throw std::runtime_error("error parsing JSON: number conversion out of range");
} catch (std::exception& e) {
throw std::runtime_error("error parsing JSON: " + std::string(e.what()));
}
return source;
}
Expand Down Expand Up @@ -452,8 +460,12 @@ StreamSink json_to_sink(const std::string& id, const std::string& json) {
} catch (boost::property_tree::json_parser::json_parser_error& je) {
throw std::runtime_error("error parsing JSON at line " +
std::to_string(je.line()) + " :" + je.message());
} catch (...) {
throw std::runtime_error("failed to convert a number");
} catch (std::invalid_argument& e) {
throw std::runtime_error("error parsing JSON: cannot perform number conversion");
} catch (std::out_of_range& e) {
throw std::runtime_error("error parsing JSON: number conversion out of range");
} catch (std::exception& e) {
throw std::runtime_error("error parsing JSON: " + std::string(e.what()));
}
return sink;
}
Expand Down
2 changes: 1 addition & 1 deletion daemon/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ namespace po = boost::program_options;
namespace postyle = boost::program_options::command_line_style;
namespace logging = boost::log;

static const std::string version("bondagit-1.6.5");
static const std::string version("bondagit-1.6.6");
static std::atomic<bool> terminate = false;

void termination_handler(int signum) {
Expand Down
12 changes: 9 additions & 3 deletions daemon/session_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -825,9 +825,15 @@ std::error_code SessionManager::add_sink(const StreamSink& sink) {
BOOST_LOG_TRIVIAL(info) << "session_manager:: playout delay "
<< info.stream.m_ui32PlayOutDelay;

auto mcast_mac_addr = get_mcast_mac_addr(info.stream.m_ui32DestIP);
std::copy(std::begin(mcast_mac_addr), std::end(mcast_mac_addr),
info.stream.m_ui8DestMAC);
if (IN_MULTICAST(info.stream.m_ui32DestIP)) {
auto mcast_mac_addr = get_mcast_mac_addr(info.stream.m_ui32DestIP);
std::copy(std::begin(mcast_mac_addr), std::end(mcast_mac_addr),
info.stream.m_ui8DestMAC);
} else {
auto mac_addr = config_->get_mac_addr();
std::copy(std::begin(mac_addr), std::end(mac_addr),
info.stream.m_ui8DestMAC);
}

std::unique_lock sinks_lock(sinks_mutex_);
auto const it = sinks_.find(sink.id);
Expand Down

0 comments on commit ac6cab0

Please sign in to comment.