v1.1.0 : Added GST RTSP standard in cmd line

This commit is contained in:
Brendan LE GLAUNEC
2016-10-31 10:01:13 +01:00
parent 74b4590758
commit 8e26751247
5 changed files with 44 additions and 8 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ brutelogs::test_ids(const etix::cameradar::stream_model& stream,
bool found = false;
std::string path = stream.service_name + "://";
if (username != "" || password != "") { path += username + ":" + password + "@"; }
path += stream.address + ":" + std::to_string(stream.port);
path += stream.address + ":" + std::to_string(stream.port) + stream.route;
LOG_INFO_("Testing ids : " + path, "brutelogs");
try {
if (curl_describe(path, true)) {