Fix to documentation and some code cleanup

This commit is contained in:
Andrea Bondavalli 2020-01-28 21:15:12 +01:00
parent 49fe740229
commit a91234d825
3 changed files with 1 additions and 4 deletions

View File

@ -22,7 +22,7 @@ The daemon can be cross-compiled for multiple platforms and implements the follo
* SAP discovery protocol implementation
* IGMP handling for SAP and RTP sessions
The directory also contains the daemon regression tests in the [tests](tests) subdirectory. To run daemon tests install the ALSA RAVENNA/AES67 kernel module enter the [tests](tests) subdirectory and run *./daemon-test -l all*
The directory also contains the daemon regression tests in the [tests](daemon/tests) subdirectory. To run daemon tests install the ALSA RAVENNA/AES67 kernel module enter the [tests](daemon/tests) subdirectory and run *./daemon-test -l all*
See the [README](daemon/README.md) file in this directory for additional information about the AES67 daemon configuration and the HTTP REST API.

View File

@ -34,8 +34,6 @@ class HttpServer {
config_(config) {};
bool start();
bool stop();
int get_http_status(const std::error_code& code) const;
std::string get_http_error(const std::error_code& code) const;
private:
std::shared_ptr<SessionManager> session_manager_;

View File

@ -625,7 +625,6 @@ std::error_code SessionManager::add_sink(const StreamSink& sink) {
info.stream.m_ui32PlayOutDelay = sink.delay;
info.stream.m_ui32RTCPSrcIP = config_->get_ip_addr();
info.ignore_refclk_gmid = sink.ignore_refclk_gmid;
info.io = sink.io;
if (!sink.use_sdp) {